Skip to content

Update test node to 20 18 20 #80

Update test node to 20 18 20

Update test node to 20 18 20 #80

Workflow file for this run

name: Tests on push
on:
push:
branches-ignore:
- 'release/*'
jobs:
macos:
runs-on: [self-hosted, macOS]
strategy:
matrix:
node: [ 20 ]
steps:
- name : Checkout
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build and lint
run: npm run build:test && npm run lint
- name: Test
run: npm test
ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 20 ]
steps:
- name : Checkout
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build and lint
run: npm run build:test && npm run lint
- name: Test
run: npm test
windows:
runs-on: windows-latest
strategy:
matrix:
node: [ 18 ]
steps:
- name : Checkout
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build and lint
run: npm run build:test && npm run lint
- name: Test
run: npm test