Skip to content

try switching to GH acitons #1

try switching to GH acitons

try switching to GH acitons #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
node:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
cpp:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test C++
run: make test