Bump the actions group with 2 updates #457
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: Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: read-all | |
jobs: | |
test-app: | |
runs-on: ubuntu-latest | |
name: Test app | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: 24 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Test linting | |
run: npm run test:linting | |
- name: Test types | |
run: npm run test:types | |
- name: Run unit tests | |
run: npm run test:unit |