Skip to content

chore(package): update preact to version 10.25.3 #950

chore(package): update preact to version 10.25.3

chore(package): update preact to version 10.25.3 #950

Workflow file for this run

name: PR Source Code Check
on:
workflow_dispatch:
push:
jobs:
lint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
cache: 'yarn'
- run: yarn
- run: yarn lint
tsc:
name: Run Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
cache: 'yarn'
- run: yarn
- run: yarn tsc
prettier:
name: Run Prettier Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
cache: 'yarn'
- run: yarn
- run: yarn format