Bump @rollup/plugin-commonjs from 28.0.1 to 28.0.2 #526
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
env: | |
CI: true | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
node: [18] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm i | |
- run: npm run rollup | |
- run: npm run postcss | |
- name: Build MacOS | |
if: startsWith(matrix.os, 'macos') | |
run: npm i dmg-license && npm run build:macos | |
- name: Build Windows | |
if: startsWith(matrix.os, 'windows') | |
run: npm run build:win | |
- name: Build Linux | |
if: startsWith(matrix.os, 'ubuntu') | |
run: npm run build:linux |