Upgrade to latest nextjs. #1295
Workflow file for this run
This file contains hidden or 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: Validate each branch changes of project | |
| on: | |
| # run on any push except merge | |
| push: | |
| branches-ignore: | |
| - main | |
| # for retriggering | |
| workflow_call: | |
| inputs: | |
| push_code_coverage: | |
| description: If code coverage is needed | |
| type: boolean | |
| jobs: | |
| test: | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| uses: ./.github/workflows/validate-test.yml | |
| secrets: inherit | |
| with: | |
| push_code_coverage: ${{ inputs.push_code_coverage == true }} | |
| check: | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| uses: ./.github/workflows/validate-compliance.yml | |
| secrets: inherit |