Skip to content

Commit

Permalink
Merge pull request #8 from luiscarlos-ja:actions
Browse files Browse the repository at this point in the history
Add NASA Project CI workflow for Node.js
  • Loading branch information
luiscarlos-ja committed Mar 30, 2024
2 parents d050d8f + 5df2711 commit 3746804
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: NASA Project CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js version 20
uses: actions/setup-node@v3
with:
node-version: "20"
- run: npm install
- run: npm run build --prefix client

0 comments on commit 3746804

Please sign in to comment.