Skip to content

ユーザーアカウントのサンプル追加 #75

ユーザーアカウントのサンプル追加

ユーザーアカウントのサンプル追加 #75

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
check-latest: true
- run: npm install
- name: Run build
run: npm run build