Skip to content

Bump express and @nestjs/platform-express #265

Bump express and @nestjs/platform-express

Bump express and @nestjs/platform-express #265

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
env:
MOCK: mock
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
- run: npm ci
- run: npm run format:check
- run: npm run build api
- run: ( mv clients/admin/.eslintrc.js clients/admin/.eslintrc__.js && yarn lint:check && mv clients/admin/.eslintrc__.js clients/admin/.eslintrc.js )
- run: npm run test api
- run: (cd clients/admin && yarn)
- run: (cd clients/admin && yarn build)
- run: (cd clients/admin && yarn lint)
- run: (cd clients/admin && yarn build-storybook)
- run: (cd clients/admin && yarn prettier:check)
- run: (cd clients/admin && yarn svelte-check)
- run: (cd clients/admin && yarn test)