Bump the non-major group with 2 updates #14
Workflow file for this run
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: PR review | |
on: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: npm | |
- name: Install Cypress dependencies | |
run: npm ci | |
- name: Ensure files follow code style | |
run: npm run prettier:check | |
- name: Ensure files pass eslint checks | |
run: npm run lint | |
test: | |
uses: ./.github/workflows/test-job.yaml | |
with: | |
dockerfile: ${{ matrix.dockerfile }} | |
strategy: | |
fail-fast: true | |
matrix: | |
dockerfile: | |
- apache | |
- apache-php8.2 | |
- nginx | |
- nginx-php8.2 |