Skip to content

chore(deps): bump axios, @juicycleff/nestjs-event-store and @nestjs/common #2738

chore(deps): bump axios, @juicycleff/nestjs-event-store and @nestjs/common

chore(deps): bump axios, @juicycleff/nestjs-event-store and @nestjs/common #2738

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]
paths-ignore:
- 'README.md'
pull_request:
branches: [master]
paths-ignore:
- 'README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 14.x
uses: actions/setup-node@v3
with:
node-version: 14.x
cache: 'npm'
- run: npm install # cannot use 'npm ci' bcos of @juicycleff/nestjs-event-store
- run: npm run lint
- run: npm run build service-user
- run: npm run build service-account
- run: npm run build gateway
- run: npm test -- --passWithNoTests
env:
CI: true