mirror of
https://github.com/alexgo-io/redstone-cache-layer.git
synced 2026-01-12 08:34:36 +08:00
17 lines
337 B
YAML
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
|