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 fede48c commit b4ee117
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/frontend.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Frontend

on:
push
# paths:
# - "frontend/**"
# paths-ignore:
# - "**/*.md"
# - "**/*.mdx"
# - "**/*.svg"
# - "**/*.png"
# - "**/*.jpg"
# - "**/*.jpeg"
# - "**/**.example.*"

jobs:
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 eslint

0 comments on commit b4ee117

Please sign in to comment.