mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-02-02 12:26:30 +00:00
19 lines
289 B
YAML
19 lines
289 B
YAML
name: test
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
|
|
jobs:
|
|
text:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Install
|
|
run: |
|
|
docker-compose build
|
|
npm ci
|
|
- name: Test
|
|
run: npm run test:run
|