Skip to content

Commit

Permalink
chore(build): Update build macro.
Browse files Browse the repository at this point in the history
  • Loading branch information
3dkit-online committed Jul 22, 2024
1 parent 7bd2c89 commit 2790d00
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
env:
CI: true
steps:
# Setup.
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm run install
- run: npm run build

0 comments on commit 2790d00

Please sign in to comment.