Skip to content

Commit

Permalink
Create ci-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pietercolpaert authored Feb 23, 2024
1 parent c76f3f8 commit ef87eb2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI 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 ef87eb2

Please sign in to comment.