Skip to content

fix format

fix format #427

Workflow file for this run

on:
push:
branches:
- "*"
- "*/*"
- "**"
- "!main"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node
uses: actions/setup-node@v3
with:
node-version: v18.x
registry-url: "https://registry.npmjs.org"
- uses: actions/cache@v3
id: node_modules_cache_id
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
- if: ${{ steps.node_modules_cache_id.outputs.cache-hit != 'true' }}
name: Install npm packages
run: yarn install
- name: static check
uses: ./.github/actions/static-check