Skip to content

chore: release version 1.0.0 #520

chore: release version 1.0.0

chore: release version 1.0.0 #520

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