Skip to content

PUSH

PUSH #2

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
lint:
name: Frontend Lint
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
fail-fast: false
matrix:
node-version: [20]
steps:
- name: Code Checkout
uses: actions/checkout@v4
- name: Goto frontend
run: cd frontend
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build