Skip to content

Bump rollup from 2.79.1 to 2.79.2 #181

Bump rollup from 2.79.1 to 2.79.2

Bump rollup from 2.79.1 to 2.79.2 #181

Workflow file for this run

name: Node.js CI build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20.x', '21.x'] # Specify Node.js versions to test against
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run prepare
- run: npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: |
dist/** # Adjust according to your build output directory
!node_modules/**
#- run: npm test