Skip to content

feat: responses/[responseID]/editの実装 #75

feat: responses/[responseID]/editの実装

feat: responses/[responseID]/editの実装 #75

Workflow file for this run

name: Testing build Nuxt.js App
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20.x
- name: Cache node_modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm ci
- name: Testing build App
run: npm run build