Skip to content

feat: opt-in scheduling option via the Prioritized Task Scheduling API #1868

feat: opt-in scheduling option via the Prioritized Task Scheduling API

feat: opt-in scheduling option via the Prioritized Task Scheduling API #1868

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test on Node
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Setup Node
uses: actions/setup-node@v6
with:
cache: 'npm'
node-version: 20
- name: Install Node dependencies
run: npm ci
- run: npm run lint
- run: npm run build
- name: Test coverage
run: npm test -- --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v7.0.0
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}