Files
snk/.github/workflows/main.yml
2020-07-16 01:26:34 +02:00

20 lines
316 B
YAML

name: main
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
- uses: bahmutov/npm-install@v1
- run: yarn type
- run: yarn lint
- run: yarn test --ci