c08be69618
* docker: use slim alpine image to remove bundling deps in Docker image * pin remaining yml actions * use lockfile * remove pulling
23 lines
462 B
YAML
23 lines
462 B
YAML
name: Lint
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- name: Install and lint
|
|
run: |
|
|
yarn install
|
|
yarn test:other
|
|
yarn test:code
|
|
yarn test:typecheck
|