Skip to content

ci: Run tests on Node instead of Bun #86

ci: Run tests on Node instead of Bun

ci: Run tests on Node instead of Bun #86

Workflow file for this run

name: Build and tests with Node.js
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 21.x
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm run test