Skip to content

Commit

Permalink
GitHub: build with Action
Browse files Browse the repository at this point in the history
  • Loading branch information
SalimTerryLi committed Feb 9, 2025
1 parent 9534532 commit 2b85763
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build
on:
push:
pull_request:
jobs:
generation:
runs-on: ubuntu-latest
container:
image: node:lts
steps:
- name: Checkout
uses: actions/checkout@v4
- name: npm i
run: npm i
- name: Build
run: npm run build
- name: Upload
uses: actions/upload-artifact@v4
with:
name: frontend
path: dist

0 comments on commit 2b85763

Please sign in to comment.