Skip to content

bt-795: Fixed mob builds #1974

bt-795: Fixed mob builds

bt-795: Fixed mob builds #1974

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- development
- production
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: |
npm install -g npm@8
npm run install:all
- name: Code Linting
run: |
npm run lint