Skip to content

Commit

Permalink
Use github actions as test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
DJWassink committed Feb 16, 2024
1 parent 7b9f5df commit d7d164c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
test-job:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node 20.x
uses: actions/setup-node@v3
with:
node-version: '20.x'

- name: Setup yarn
run: npm install -g yarn

- name: Install dependencies
run: yarn

- name: Test
run: yarn test

0 comments on commit d7d164c

Please sign in to comment.