2023 migration (#30) #74
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
name: Build React App | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Download dependencies with npm | |
run: npm install | |
- run: npm ci | |
- run: npm run build --if-present | |
- name: Run the tests and generate coverage report | |
run: npm test -- --coverage | |
- name: Adding coverage badge | |
uses: demyanets/angular-coverage-badges-action@v1 | |
with: | |
coverage-summary-path: ./coverage/coverage-summary.json | |
github_token: ${{ secrets.GITHUB_TOKEN }} |