Skip to content

Commit

Permalink
chore: setup test build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Callin Mullaney committed Jul 26, 2024
1 parent 0d9a445 commit b68d002
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,17 @@ jobs:
build:
name: Test Project Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run project build
run: |
npm install
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm install
- run: npm ci

0 comments on commit b68d002

Please sign in to comment.