Skip to content

Ensure it's possible to install the latest version of the web-vitals library #143

Ensure it's possible to install the latest version of the web-vitals library

Ensure it's possible to install the latest version of the web-vitals library #143

name: Web Vitals CI - Unit Tests & Code Coverage
on:
create:
branches:
- '**'
pull_request:
branches:
- '**'
push:
branches:
- latest
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16']
env:
CI: true
LOG_LEVEL: 'error'
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
GIT_COMMIT_SHA: ${{ github.sha }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Node Modules
run: ./scripts/installNodeModules.sh
- name: Unit Tests
run: yarn test:ci