Skip to content

Merge pull request #27 from clustlight/workflow/fix-frontend-actions #6

Merge pull request #27 from clustlight/workflow/fix-frontend-actions

Merge pull request #27 from clustlight/workflow/fix-frontend-actions #6

Workflow file for this run

name: Frontend Lint
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install Dependencies
run: npm ci
working-directory: frontend
- name: Run next lint
run: yarn run lint
- name: Run prettier check
run: yarn run prettier:check