Skip to content

Bump cookie and express #1146

Bump cookie and express

Bump cookie and express #1146

Workflow file for this run

name: Foundations CI
on:
push:
branches: [main]
pull_request:
branches: [main]
defaults:
run:
shell: bash -l {0}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set the correct npm version
run: nvm install && nvm use
- name: Install dependencies from npm
run: |
nvm use
npm ci
- name: Build Foundations
run: |
nvm use
npm run build
- name: Confirm the build hasn't changed any files
run: ./check-pristine-state package-lock.json
- name: Run tests
run: |
nvm use
npm test