Skip to content

Material Symbolsフォントの読み込み・使うアイコンのみコンポーネント化 #33

Material Symbolsフォントの読み込み・使うアイコンのみコンポーネント化

Material Symbolsフォントの読み込み・使うアイコンのみコンポーネント化 #33

Workflow file for this run

name: CI (main)
on:
pull_request:
branches:
- 'main'
jobs:
package:
name: node package install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
build:
name: type and build check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run build