Skip to content

Bump @next/eslint-plugin-next from 13.4.19 to 14.0.3 in /frontend (#375) #1034

Bump @next/eslint-plugin-next from 13.4.19 to 14.0.3 in /frontend (#375)

Bump @next/eslint-plugin-next from 13.4.19 to 14.0.3 in /frontend (#375) #1034

Workflow file for this run

name: frontend
on:
workflow_dispatch:
push:
paths:
- 'frontend/**'
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup yarn
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
cache-dependency-path: frontend/yarn.lock
- name: Install npm modules
run: yarn
working-directory: frontend
- name: Run prettier, lint, jest checks
run: yarn test
working-directory: frontend