got simple integration tests set up with pic #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: mops test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ZenVoich/setup-mops@v1 | |
- name: make sure moc is installed | |
run: mops toolchain bin moc || mops toolchain use moc latest | |
- name: install dependencies | |
run: npm run install-deps | |
- name: run unit tests | |
run: npm run unit-tests | |
- name: run integration tests | |
run: npm run integration-tests |