Merge pull request #24 from QURIresearch/github-actions
Add GitHub Actions to Squiggle Lang
This commit is contained in:
commit
0e8bfe7a76
19
.github/workflows/lang-jest.yml
vendored
Normal file
19
.github/workflows/lang-jest.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Squiggle Lang Jest Tests
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
working-directory: packages/squiggle-lang
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Packages
|
||||
run: yarn
|
||||
- name: Build rescript
|
||||
run: yarn rescript build -with-deps
|
||||
- name: Run tests
|
||||
run: yarn test
|
Loading…
Reference in New Issue
Block a user