Skip to content

Change actions

Change actions #14

Workflow file for this run

jobs:
full:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: node
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v4
small:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
cache: npm
node-version: lts/hydrogen
- run: npm install
- run: npm run test-api
name: main
on:
- pull_request
- push