Skip to content

GCAP Phase 1

GCAP Phase 1 #699

Workflow file for this run

name: Check eslint
on:
push:
branches: ["main", "dev"]
pull_request:
types: [opened, synchronize, reopened]
jobs:
eslint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --immutable
- name: Run eslint
run: yarn lint
- name: Test build
run: yarn build