Skip to content

Bump path-to-regexp from 1.8.0 to 1.9.0 #38

Bump path-to-regexp from 1.8.0 to 1.9.0

Bump path-to-regexp from 1.8.0 to 1.9.0 #38

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: yarn-cache
with:
path: node_modules
key: v1-${{ hashFiles('./yarn.lock') }}
restore-keys: |
v1-
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install
- name: Run Tests
run: yarn test