Skip to content

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.5 in /spot-electron #72

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.5 in /spot-electron

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.5 in /spot-electron #72

name: 'CI - spot-electron'
on: [pull_request]
jobs:
lint-spot-electron:
name: Lint [spot-electron]
runs-on: ubuntu-latest
steps:
- name: Step 1 - checkout
uses: actions/checkout@v3
- name: cd spot-electron
run: cd spot-electron
- name: Step 2 - setup node 16
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: spot-electron/package-lock.json
- name: Step 3 - run install
working-directory: 'spot-electron'
run: npm install
- name: Step 4 - run lint
working-directory: 'spot-electron'
run: npm run lint
unit-tests-spot-electron:
name: Unit-tests [spot-electron]
runs-on: ubuntu-latest
steps:
- name: Step 1 - checkout
uses: actions/checkout@v3
- name: cd spot-electron
run: cd spot-electron
- name: Step 2 - setup node 16
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: spot-electron/package-lock.json
- name: Step 3 - run install
working-directory: 'spot-electron'
run: npm install
- name: Step 4 - run test
working-directory: 'spot-electron'
run: npm run test