cryptgeon/.github/workflows/test.yml

19 lines
289 B
YAML
Raw Normal View History

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