Skip to content

Provenance generation in GitHub Actions requires "write" access to th… #7

Provenance generation in GitHub Actions requires "write" access to th…

Provenance generation in GitHub Actions requires "write" access to th… #7

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
- run: npm ci
- run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}