Skip to content

feat: Node.js v20以上に切り替える #157

feat: Node.js v20以上に切り替える

feat: Node.js v20以上に切り替える #157

Workflow file for this run

name: npm test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '20' ]
steps:
- uses: actions/checkout@v2
- name: Setup NodeJs
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
run: npm install
- name: Run test
run: npm test