shellphone.app/.github/workflows/main.yml

28 lines
619 B
YAML
Raw Permalink Normal View History

2022-05-14 10:22:06 +00:00
name: CI
2021-08-20 06:28:34 +00:00
on: [push, pull_request]
jobs:
2021-08-20 06:28:34 +00:00
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
2021-10-01 21:06:26 +00:00
node-version: 16
2022-05-14 10:22:06 +00:00
cache: "npm"
2021-08-27 16:48:24 +00:00
- run: npm ci
2021-08-20 06:28:34 +00:00
- run: npm run lint
2022-06-27 00:26:06 +00:00
typecheck:
name: Typecheck
2021-08-20 06:28:34 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
2021-10-01 21:06:26 +00:00
node-version: 16
2021-08-27 16:48:24 +00:00
- run: npm ci
2022-06-27 00:26:06 +00:00
- run: npx tsc