Skip to content

ci: change ubuntu-22.04 to ubuntu-20.04 #3

ci: change ubuntu-22.04 to ubuntu-20.04

ci: change ubuntu-22.04 to ubuntu-20.04 #3

Workflow file for this run

name: Platform tests
on:
pull_request:
types: [opened, reopened, synchronize]
paths:
- 'package.json'
- '.github/workflows/platform-tests.yml'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-20.04
platform: linuxmusl-x64
- os: ubuntu-20.04
platform: linux-x64
- os: macos-12
platform: darwin-x64
- os: windows-latest
platform: win32-x64
- os: windows-latest
platform: win32-ia32
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies and test
run: |
npm install
npm run test