Skip to content

fix(script-compiler): support node: prefix #416

fix(script-compiler): support node: prefix

fix(script-compiler): support node: prefix #416

Workflow file for this run

name: test
on: [ push, pull_request ]
env:
CI: true
permissions:
contents: read
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }} x ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [ 18, 20 ]
os: [ ubuntu-latest, windows-latest ]
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: "yarn"
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Test
run: yarn test