feat: add github actions CI

This commit is contained in:
Travis Fischer
2022-03-26 04:00:27 -04:00
parent 004951ea73
commit e17f4f0878

17
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Build
on: [push, pull_request]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn build