Skip to content

Bump @adobe/css-tools from 4.3.1 to 4.3.2 #73

Bump @adobe/css-tools from 4.3.1 to 4.3.2

Bump @adobe/css-tools from 4.3.1 to 4.3.2 #73

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build React App
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- 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 }}