Skip to content

feat: エラーメッセージに理由・修正方法・例を追加 #21

feat: エラーメッセージに理由・修正方法・例を追加

feat: エラーメッセージに理由・修正方法・例を追加 #21

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
node-version: [ 16, 18 ]
steps:
- name: checkout
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
with:
persist-credentials: false
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Test
run: yarn test