Skip to content

chore(deps): bump path-to-regexp from 6.2.2 to 6.3.0 #99

chore(deps): bump path-to-regexp from 6.2.2 to 6.3.0

chore(deps): bump path-to-regexp from 6.2.2 to 6.3.0 #99

Workflow file for this run

name: Build
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Upload dist
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
retention-days: 1