Skip to content

Commit

Permalink
Merge branch 'main' of github.com:pietercolpaert/extract-cbd-shape
Browse files Browse the repository at this point in the history
  • Loading branch information
pietercolpaert committed Feb 23, 2024
2 parents 6bf2cb1 + 8ac64e2 commit b11046e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: tests

on:
push:
branches:
- main
pull_request:
branches: []

jobs:
test:
name: Run tests
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

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

- name: Install dependencies
run: npm install ; npm install -g bun ;

- name: Run tests
run: npm test

0 comments on commit b11046e

Please sign in to comment.