Skip to content

npm - back-end: bump express-session and @types/express-session #1165

npm - back-end: bump express-session and @types/express-session

npm - back-end: bump express-session and @types/express-session #1165

Workflow file for this run

name: GitHub NPM Test
on:
push:
branches-ignore:
- 'dependabot/**'
- trunk
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: npm
- name: Install Dependencies
run: npm ci
- name: Run Markdownlint
run: npm run lint:md
- name: Run ESLint
run: npm run lint:js
- name: Run cSpell
run: |
echo "::add-matcher::.github/workflows/cspell-problem-matcher.json"
npm run lint:spell
- name: Run tests
run: npm test
- name: Build container
run: |
docker build .