Skip to content

Commit

Permalink
Create build-test-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewNguyen16 authored Dec 26, 2023
1 parent 9a64839 commit 12b5258
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: hello-world
on: push
jobs:
hello-world-job:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
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 12b5258

Please sign in to comment.