Skip to content

loop ~ arrayの演習問題の追加、再配置 #518

loop ~ arrayの演習問題の追加、再配置

loop ~ arrayの演習問題の追加、再配置 #518

Workflow file for this run

name: Build Test
on:
pull_request:
jobs:
build-test:
name: Build Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: latest
cache: npm
- name: Install Dependencies
run: npm ci
shell: bash
- name: Build
run: npm run build
shell: bash