Skip to content

Updated libs: Bump react-cookie from 7.2.0 to 7.2.1 #672

Updated libs: Bump react-cookie from 7.2.0 to 7.2.1

Updated libs: Bump react-cookie from 7.2.0 to 7.2.1 #672

Workflow file for this run

name: Node checks
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.10.x]
steps:
- uses: actions/checkout@v4
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: CI command
run: npm ci
- name: Linting checks
run: npm run lint
- name: Unit Tests
run: npm run test:unit