Skip to content
Snippets Groups Projects
Commit 266fa98c authored by Christian Bager Bach Houmann's avatar Christian Bager Bach Houmann
Browse files

add test workflow to run on push

parent 2f25ca49
No related branches found
No related tags found
No related merge requests found
name: Test
on: push
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Deno
uses: denolib/setup-deno@v2
with:
deno-version: v1.x
- name: Install dependencies
run: |
npm ci
npm run build --if-present
- name: Run tests
run: |
npm run test
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment