fix(deps): bump lint-staged from 15.2.9 to 15.2.10 #127
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: Test | |
on: [pull_request] | |
permissions: read-all | |
concurrency: | |
group: ${{ github.ref_name }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: 20.x | |
- name: Install dependencies and link | |
run: npm ci && npm link | |
- name: Run tests | |
run: npm run test |