Skip to content

Commit

Permalink
Add spec-coverage-report workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
VeskeR committed Jul 4, 2024
1 parent 366f764 commit 8eb3a75
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/spec-coverage-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Spec coverage report
on:
pull_request:
push:
branches:
- main

jobs:
spec-coverage-report:
runs-on: ubuntu-latest
permissions:
deployments: write
id-token: write
steps:
- uses: actions/checkout@v2
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: Use Node.js 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x
- run: npm ci
- run: npm run speccoveragereport

0 comments on commit 8eb3a75

Please sign in to comment.