WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

演習問題にSandpackによる実行環境を追加 #1141

演習問題にSandpackによる実行環境を追加

演習問題にSandpackによる実行環境を追加 #1141

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
cache: npm
- name: Install Packages
run: npm ci
shell: bash
- name: Prettier
run: npm run format:check
shell: bash
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
cache: npm
- name: Install Packages
run: npm ci
shell: bash
- name: Build
run: npm run build
shell: bash