Skip to content

Releases v2.5.1

Releases v2.5.1 #276

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: ${{ matrix.friendlyName }} Node ${{matrix.nodeVersion}} ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
nodeVersion: [14, 16, 18]
arch: [x64]
os: [macos-11, windows-2019, ubuntu-22.04]
include:
- os: macos-11
friendlyName: macOS
- os: windows-2019
friendlyName: Windows
- os: windows-2019
friendlyName: Windows
nodeVersion: 16
arch: x86
- os: ubuntu-22.04
friendlyName: Linux
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install Node.js ${{ matrix.nodeVersion }} (${{ matrix.arch }})
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodeVersion }}
architecture: ${{ matrix.arch }}
- name: Install and build dependencies
run: yarn
env:
npm_config_arch: ${{ matrix.arch }}
- name: Build
run: yarn build
- name: Lint
run: yarn is-it-pretty
- name: Reset safe.directory
run: git config --global --add safe.directory ""
shell: bash
- name: Test
run: yarn test
env:
TEST: 1