Skip to content

Bump path-to-regexp from 6.2.1 to 6.3.0 #194

Bump path-to-regexp from 6.2.1 to 6.3.0

Bump path-to-regexp from 6.2.1 to 6.3.0 #194

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Enable Corepack
run: corepack enable
- name: Install Corepack
run: corepack install
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Unit tests
run: yarn test