Skip to content

chore(deps): bump the npm_and_yarn group across 2 directories with 6 updates #170

chore(deps): bump the npm_and_yarn group across 2 directories with 6 updates

chore(deps): bump the npm_and_yarn group across 2 directories with 6 updates #170

Workflow file for this run

name: "eslint"
on:
pull_request:
branches:
- main
jobs:
lint:
strategy:
max-parallel: 2
fail-fast: false
matrix:
app: ['event-handler','runner-controller']
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install Dependencies
run: yarn install
working-directory: app/${{ matrix.app }}
- name: Lint
run: yarn run lint
working-directory: app/${{ matrix.app }}