docker file in progress #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/marketplace/actions/jest-coverage-report | |
# By default, uses npm for package manager | |
name: Typescript Coverage | |
# Runs on push to any branch | |
on: | |
push: | |
# ** means all branches and tags | |
branches: ["**"] | |
# Workflow can be triggered manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Setup nodejs on runner | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
# Install the npm dependencies & run Typescript code coverage report | |
- name: Install dependencies and run code coverage | |
run: | | |
npm install && npm run ts-coverage | |
# Upload HTML report of code coverage | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Typescript Code Coverage | |
path: /home/runner/work/luminosityleds/luminosityleds/coverage-ts/index.html |