Skip to content

feat(custom-versions): starts with custom versions #170

feat(custom-versions): starts with custom versions

feat(custom-versions): starts with custom versions #170

Workflow file for this run

name: Tests
'on':
push:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['16', '17', '18']
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- name: yarn and test
run: |
yarn
yarn test