Skip to content

bump path-to-regexp to 3.3.0 #210

bump path-to-regexp to 3.3.0

bump path-to-regexp to 3.3.0 #210

Workflow file for this run

name: Build & Test
on:
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16]
steps:
- uses: actions/checkout@v3
- name: Additional Checkout
run: git submodule update --init --recursive
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "yarn"
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test