Files
2021-09-26 00:25:06 +02:00

17 lines
337 B
YAML

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Put mock .secrets.json
run: |
echo '{"dbUrl": "mock-db-url"}' > .secrets.json
- name: Install modules
run: |
yarn
- name: Run tests
run: |
yarn test:ci