Skip to content

依存関係アップデート #2

依存関係アップデート

依存関係アップデート #2

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/cache@v3
id: npm-cache
with:
path: 'node_modules'
key: npm-${{ hashFiles('package-lock.json') }}
- run: npm install
if: steps.npm-cache.outputs.cache-hit != 'true'
- run: npm run lint
- run: npm run typecheck