Skip to content

Commit

Permalink
feat: add build-test-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ljc1991 committed Oct 9, 2023
1 parent 3e378eb commit 92c66c5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: build-test-deploy
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: use node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm install
- run: npm run build

0 comments on commit 92c66c5

Please sign in to comment.