bump version to 17 #5
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: | |
branches: [master] | |
paths: | |
- [email protected]/** | |
- package.json | |
- yarn.lock | |
- rollup.config.js | |
pull_request: | |
branches: [master] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [16.0, 18.0] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Enable corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn install | |
- name: Run build | |
run: yarn build |