Skip to content

Bump cookie and express #132

Bump cookie and express

Bump cookie and express #132

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- canary
- dev
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: |
npx playwright install --with-deps chrome
npm test