cryptgeon/.github/workflows/test.yml

19 lines
289 B
YAML
Raw Normal View History

2021-05-10 08:11:31 +00:00
name: test
on:
workflow_dispatch:
2021-05-14 13:09:55 +00:00
push:
2021-05-10 08:11:31 +00:00
jobs:
text:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: |
2021-05-10 08:13:05 +00:00
docker-compose build
2021-05-10 08:11:31 +00:00
npm ci
2021-05-14 13:09:55 +00:00
- name: Test
run: npm run test:run