Skip to content

test: add a test case for supporting pointing to config files #2

test: add a test case for supporting pointing to config files

test: add a test case for supporting pointing to config files #2

Workflow file for this run

name: test
on: [push, pull_request]
env:
CI: true
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18, 20 ]
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install && yarn bootstrap
- name: Type Check
run: yarn type-check
- name: Test
run: yarn test