Skip to content

Bump web-vitals from 2.1.4 to 4.2.1 #17

Bump web-vitals from 2.1.4 to 4.2.1

Bump web-vitals from 2.1.4 to 4.2.1 #17

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '0 2 * * 1' # Runs every Monday at 2 AM
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test -- --watchAll=false
- name: Build project
run: npm run build