Skip to content

chore: bump rollup from 4.24.0 to 4.24.2 in the all-deps group #306

chore: bump rollup from 4.24.0 to 4.24.2 in the all-deps group

chore: bump rollup from 4.24.0 to 4.24.2 in the all-deps group #306

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['16', '18']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test --ci --coverage --maxWorkers=2
pack:
name: Pack and upload
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install deps and build (with cache)
run: npm install
- name: Pack
run: npm pack
- name: Upload
uses: actions/upload-artifact@v3
with:
name: image-display-control-metadata-parser
path: frameright-image-display-control-metadata-parser-*.tgz
if-no-files-found: error