Migrate Travis to GitHub Actions

This commit is contained in:
Norbert Renner 2022-07-26 16:41:26 +02:00
parent 25312e8944
commit 2b13c9ce02
2 changed files with 18 additions and 7 deletions

18
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- run: yarn --frozen-lockfile
- run: yarn test
- run: yarn lint
- run: yarn pretty-quick --check
- run: yarn build