Skip to content

ブラウザ・Nodeを選択可能に (#2) #8

ブラウザ・Nodeを選択可能に (#2)

ブラウザ・Nodeを選択可能に (#2) #8

Workflow file for this run

name: Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "npm"
- shell: bash
run: npm ci
- run: npm run lint
- run: npm run test