Skip to content

fix: Ignore terraform working files #161

fix: Ignore terraform working files

fix: Ignore terraform working files #161

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 }}