Skip to content

Bump cookie-session from 2.0.0 to 2.1.0 #6181

Bump cookie-session from 2.0.0 to 2.1.0

Bump cookie-session from 2.0.0 to 2.1.0 #6181

Workflow file for this run

---
name: pr-tests
on: pull_request
jobs:
test:
name: Run tests
runs-on: ubuntu-22.04
env:
NODE_ENV: development
TEST_TIMEOUT: 60000
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
with:
node-version-file: "package.json"
- run: npm ci
- name: Build
run: npm run build
- name: Test - Unit
run: npm run test:unit
- name: Lint
run: npm run lint