Update dependencies #39
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
on: | |
push: | |
branches: | |
- master | |
- release/* | |
pull_request: | |
name: Run Tests | |
jobs: | |
linux-tests: | |
name: "Linux Tests" | |
strategy: | |
matrix: | |
container: ["ubuntu:18.04"] | |
node: [16, 18] | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ matrix.container }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
check-latest: true | |
- name: Install Ubuntu dependencies | |
if: ${{ startsWith(matrix.container, 'ubuntu') }} | |
run: | | |
apt update && apt install -y software-properties-common && apt install -y git build-essential | |
- name: Install CentOS dependencies | |
if: ${{ startsWith(matrix.container, 'centos') }} | |
run: | | |
yum install -y git gcc gcc-c++ make | |
- name: Run tests | |
run: | | |
npm install --global yarn | |
yarn | |
yarn test | |
macos-tests: | |
name: "MacOS Tests" | |
strategy: | |
matrix: | |
node: [16, 18] | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
check-latest: true | |
- run: | | |
brew unlink [email protected] | |
brew install [email protected] | |
unlink /usr/local/bin/python3 | |
ln -s /opt/homebrew/Cellar/[email protected]/3.10.14/bin/python3.10 /usr/local/bin/python3 | |
npm install --global yarn | |
yarn | |
yarn test | |
windows-tests: | |
name: "Windows Tests" | |
strategy: | |
matrix: | |
node: [16, 18] | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
check-latest: true | |
- run: | | |
npm install --global yarn | |
npm install --global [email protected] | |
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"} | |
yarn | |
yarn test |