Skip to content

Commit

Permalink
Create build-test-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JMN09 authored Jul 9, 2024
1 parent e63abd7 commit 99ca1d6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: build-test-deploy
on: push

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: checkout repo
uses: actions/checkout@v4
- name: use node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm install
- run: npm run build

0 comments on commit 99ca1d6

Please sign in to comment.