chore(deps): update actions/checkout action to v4.1.7 #738
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: Checking code quality | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setting up Node.js | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- name: npm install | |
run: npm ci --no-audit --no-fund | |
- name: lint | |
run: npm run lint | |
- name: test | |
run: npm run test:ci | |
- name: build | |
run: npm run build |