Skip to content

Bump cookie and express #61

Bump cookie and express

Bump cookie and express #61

Workflow file for this run

name: Node CI
on:
push:
branches: [ master ]
paths:
- 'src/**'
- package-lock.json
pull_request:
branches: [ master ]
paths:
- 'src/**'
- package-lock.json
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["lts/*"]
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
check-latest: true
cache: npm
- name: "npm install & build"
run: |
npm ci
npm run build-ci
env:
CI: true