Skip to content

Bump next from 14.2.4 to 15.0.4 in /member-portal-frontend #2

Bump next from 14.2.4 to 15.0.4 in /member-portal-frontend

Bump next from 14.2.4 to 15.0.4 in /member-portal-frontend #2

Workflow file for this run

name: Frontend Lint
on:
workflow_dispatch:
pull_request:
paths:
- 'member-portal-frontend/**'
permissions:
statuses: write
contents: read
pull-requests: write
defaults:
run:
working-directory: member-portal-frontend
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Set commit status as pending
uses: myrotvorets/set-commit-status-action@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
status: pending
context: Check pull request (Frontend)
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
npm install
- uses: reviewdog/action-eslint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
workdir: member-portal-frontend
fail_on_error: 'true'
- name: Set final commit status
uses: myrotvorets/set-commit-status-action@master
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
context: Check pull request (Frontend)