Skip to content

Build(deps-dev): Bump eslint from 8.54.0 to 8.55.0 in /fbg-server #5465

Build(deps-dev): Bump eslint from 8.54.0 to 8.55.0 in /fbg-server

Build(deps-dev): Bump eslint from 8.54.0 to 8.55.0 in /fbg-server #5465

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: FBG-CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
e2e-test:
runs-on: ubuntu-latest
steps:
- uses: medyagh/setup-minikube@master
- uses: actions/setup-node@v1
with:
node-version: 16.x
- uses: actions/checkout@v2
- name: Build docker images
run: ./docker-build.sh -db
- name: Test on minikube
run: ./misc/test_minikube
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: 16.x
- uses: actions/checkout@v2
- run: yarn install
- run: yarn run codegen
- run: yarn run lint
- run: yarn run test
- run: cd v2
- run: yarn install
- run: yarn run lint
- run: yarn run test