Skip to content

Commit

Permalink
PUSH
Browse files Browse the repository at this point in the history
-> Please be the fix
  • Loading branch information
NaysKutzu committed Nov 23, 2024
1 parent 0ef4066 commit 8b9d8ad
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Node.js CI

on: [push, pull_request]
jobs:
lint:
name: Frontend Lint
build:
name: Frontend Build
runs-on: ubuntu-latest

permissions:
Expand All @@ -27,6 +27,12 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
run: |
if [ -f yarn.lock ]; then
yarn install --frozen-lockfile
else
echo "yarn.lock file not found"
exit 1
fi
- name: Build
run: yarn build

0 comments on commit 8b9d8ad

Please sign in to comment.