This repository was archived by the owner on Sep 23, 2025. It is now read-only.
Chore(deps): Bump next from 15.1.4 to 15.3.3 #2469
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: CI | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.10.0 | |
cache: npm | |
- run: npm ci --ignore-scripts | |
- run: npm run lint | |
- run: npm run test | |
# Coverage artifacts still uploaded for potential future use | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: code-coverage | |
path: coverage/ |