2020-03-22 19:56:55 +02:00
|
|
|
name: Lint
|
2020-01-16 23:50:02 +02:00
|
|
|
|
2021-02-04 14:01:20 +02:00
|
|
|
on: pull_request
|
2020-01-16 23:50:02 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
2021-01-28 15:50:48 +02:00
|
|
|
- name: Setup Node.js 14.x
|
2020-01-16 23:50:02 +02:00
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
2021-01-28 15:50:48 +02:00
|
|
|
node-version: 14.x
|
2020-01-16 23:50:02 +02:00
|
|
|
|
|
|
|
- name: Install and lint
|
|
|
|
run: |
|
|
|
|
npm ci
|
2020-02-02 20:04:35 +02:00
|
|
|
npm run test:other
|
2020-01-16 23:50:02 +02:00
|
|
|
npm run test:code
|
2020-03-14 21:12:39 -07:00
|
|
|
npm run test:typecheck
|