Skip to content

Commit

Permalink
chore(gh-actions): frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
krystxf committed Apr 21, 2024
1 parent 4ae9622 commit 31bb424
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/frontend.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Frontend

on: push

jobs:
frontend-ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- uses: pnpm/action-setup@v3
with:
version: 8

- run: |
cd ./frontend
pnpm install
pnpm run lint

0 comments on commit 31bb424

Please sign in to comment.