Skip to content

Change actions

Change actions #13

Workflow file for this run

jobs:
full:
name: full build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v4
small:
name: test / ${{matrix.os}} / ${{matrix.node}}
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
- run: npm install
- run: npm run test-api
strategy:
matrix:
include:
- node: lts/hydrogen
os: ubuntu-latest
node:
- node
os:
- macos-latest
- windows-latest
name: main
on:
- pull_request
- push