Skip to content

Commit

Permalink
Create dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
igorls authored Oct 31, 2024
1 parent ccdfb3e commit 30b28da
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build with Node.js CI

on:
push:
branches: [ "3.5.0-esm" ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 23.x]
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 --ignore-scripts
- run: npm run build

0 comments on commit 30b28da

Please sign in to comment.