Skip to content

Commit

Permalink
Add GitHub action to test build. (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
demiankatz authored Oct 23, 2024
1 parent 2403564 commit ba1d5c5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: NPM build + test

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '18' ]

name: Node ${{ matrix.node }} build
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-${{ matrix.node }}-npm-${{ hashFiles('**/package-lock.lock') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- run: npm ci
- run: npm run build

0 comments on commit ba1d5c5

Please sign in to comment.