Merge branch 'staging' into lp-collateral #972
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: CI | |
on: [push, pull_request] | |
env: | |
SECRETS_FILE: ${{secrets.SECRETS_FILE}} | |
jobs: | |
run-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- run: echo "$SECRETS_FILE" | base64 -d > .env | |
- name: Install Components | |
run: yarn install | |
- name: Run Gravita tests | |
run: yarn test test/gravita/*.js | |
#run: yarn test | |