Skip to content

In a README examples, create the initial editor state only once (#140) #492

In a README examples, create the initial editor state only once (#140)

In a README examples, create the initial editor state only once (#140) #492

Workflow file for this run

name: check
on:
push:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Lint
run: yarn check:lint
- name: Format
run: yarn check:format
- name: Types
run: yarn check:types
- name: Version
run:
git fetch origin main --depth 1 && ./scripts/if-no-version-change.sh
yarn version check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Test
run: yarn test