Skip to content

Commit

Permalink
fix: add build step
Browse files Browse the repository at this point in the history
  • Loading branch information
xuthus5 committed Oct 17, 2024
1 parent 5d359d8 commit 71fcfbe
Show file tree
Hide file tree
Showing 4 changed files with 34,527 additions and 6 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and Run Action
on:
push:
branches: [ main ]
jobs:
build-and-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run your action
uses: ./
Loading

0 comments on commit 71fcfbe

Please sign in to comment.