Bump docker/build-push-action from f2a1d5e99d037542a71f64918e516c093c6f3fc4 to 4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-eslint: | |
name: Run ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up node 18.x | |
uses: actions/[email protected] | |
with: | |
node-version: 18 | |
cache: yarn | |
- name: Install dependencies | |
working-directory: ./packages/portal | |
run: yarn install | |
- name: Build GraphQL | |
run: yarn run gql:build | |
working-directory: . | |
- name: Run ESLint | |
run: npm run lint:report | |
continue-on-error: true | |
- name: Annotate Code Linting Results | |
uses: ataylorme/eslint-annotate-action@v2 | |
with: | |
report-json: "eslint_report.json" |