Skip to content

fontkit をフォーク版に切り替え & 関連処理を最新化 #67

fontkit をフォーク版に切り替え & 関連処理を最新化

fontkit をフォーク版に切り替え & 関連処理を最新化 #67

Workflow file for this run

name: Test
on:
push:
branches: ['denkiyagi-fork']
pull_request:
branches: ['denkiyagi-fork']
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install
- run: yarn typecheck
- run: yarn lint
- run: yarn test