Skip to content

Commit

Permalink
PUSH
Browse files Browse the repository at this point in the history
-> Test build
  • Loading branch information
NaysKutzu committed Nov 23, 2024
1 parent a519860 commit e59b21a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Goto frontend
run: cd frontend
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build

0 comments on commit e59b21a

Please sign in to comment.