Skip to content

Commit

Permalink
Add automated build and test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pkalita-lbl committed Jul 29, 2022
1 parent 1f7f649 commit 036384f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build and test

on: [push]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn build:lib
- run: yarn test

0 comments on commit 036384f

Please sign in to comment.