chore(deps): update actions/setup-node digest to 1d0ff46 #182
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: Automated CI checks | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
install-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4 | |
with: | |
node-version: 18.x | |
- name: Install dependencies | |
run: npm ci | |
- name: Run linter (eslint) | |
run: npm run lint | |
- name: Run type check (typescript) | |
run: npm run typecheck | |
- name: Run tests (Jest) | |
run: npm test |