Update dependency @payloadcms/email-nodemailer to v3.17.1 #511
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build application on commit | |
on: | |
workflow_call: | |
pull_request: | |
push: | |
paths: | |
- '**' | |
branches: | |
- '**' | |
tags-ignore: ['*'] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.13 | |
- name: Trying to install dependencies and build the application | |
run: | | |
yarn --version | |
echo "Going to install dependencies..." | |
yarn install | |
echo "Checking version..." | |
yarn next -v | |
echo "Going to check formatting..." | |
yarn run check-lint | |
echo "Going to build application..." | |
yarn run build |