chore(deps): update actions/checkout action to v5 #1635
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: build | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| types: [ opened, synchronize ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [ 18.x, 20.x, 22.x ] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Install Node Modules | |
| uses: bahmutov/npm-install@v1 | |
| with: | |
| install-command: npm ci | |
| - name: Install Playwright Browsers | |
| run: npx playwright install --with-deps | |
| - run: npm run lint | |
| - run: npm test | |
| env: | |
| CI: true | |
| - name: GitHub Pages | |
| uses: JamesIves/[email protected] | |
| if: matrix.node-version == '22.x' && github.ref == 'refs/heads/main' | |
| with: | |
| branch: gh-pages | |
| folder: target/site/serenity | |
| clean: true |