Bump build dependencies #94
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
jobs: | |
build: | |
name: ${{ matrix.friendlyName }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [20.12.2] | |
os: [macos-latest, windows-latest, ubuntu-18.04] | |
include: | |
- os: macos-latest | |
friendlyName: macOS | |
- os: windows-latest | |
friendlyName: Windows | |
- os: ubuntu-latest | |
friendlyName: Linux | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12.3 | |
cache: 'pip' | |
- name: Install Python setup tools | |
run: | | |
pip install setuptools | |
- name: Install and build | |
run: | | |
yarn install | |
yarn build | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
run: yarn test | |
shell: bash | |
- name: Prebuild (x64) | |
run: npm run prebuild-napi-x64 | |
- name: Prebuild (arm64) | |
run: npm run prebuild-napi-arm64 | |
if: ${{ matrix.os != 'ubuntu-latest' }} | |
- name: Prebuild (Windows x86) | |
run: npm run prebuild-napi-ia32 | |
if: ${{ matrix.os == 'windows-latest' }} | |
- name: Publish | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
run: yarn upload | |
env: | |
GITHUB_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |