Skip to content

Merge pull request #434 from benallfree/feat/init-ts #163

Merge pull request #434 from benallfree/feat/init-ts

Merge pull request #434 from benallfree/feat/init-ts #163

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
env:
CI: true
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node: [ 18, 20 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Test
run: yarn test