Skip to content

Commit

Permalink
Merge pull request #208 from jonathan-irvin/ji/gh-action-build
Browse files Browse the repository at this point in the history
add build gh-action
  • Loading branch information
nevo-david authored Sep 9, 2024
2 parents d55ba30 + 5634706 commit 53c175f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: ['20.17.0']
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build

0 comments on commit 53c175f

Please sign in to comment.