npm: bump re-resizable from 6.9.11 to 6.9.17 #671
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: JS Continuous Integration | |
on: | |
pull_request: | |
branches: [develop, trunk] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build plugin | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
node-version: [16.x, 18.x] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: ./.github/actions/node | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Build package | |
shell: bash | |
run: npm run build --if-present |