Skip to content

Publishing CRAP report for refs/heads/main #40

Publishing CRAP report for refs/heads/main

Publishing CRAP report for refs/heads/main #40

name: publish-crap-report
run-name: Publishing CRAP report for ${{ github.ref }}
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: ./.nvmrc
cache: npm
- name: Install NPM Packages
run: npm ci
- name: Generate Test Data
run: npm run test:generate-data
- name: Generate Test Coverage
run: npm run test:cov
- name: Generate CRAP Report
run: npm run start -- -- ./coverage/coverage-final.json --html
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./crap-report/html
deploy:
needs: build
runs-on: ubuntu-latest
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1