Skip to content

chore: release v0.0.2-beta.7 #16

chore: release v0.0.2-beta.7

chore: release v0.0.2-beta.7 #16

Workflow file for this run

name: CI
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
# env
- name: Setup git
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
cache: pnpm
- name: Setup Install
run: pnpm install
# lint
- name: Lint
run: pnpm lint
test:
runs-on: ubuntu-latest
steps:
# env
- name: Setup git
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
cache: pnpm
- name: Setup Install
run: pnpm install
# test
- name: Test
run: pnpm test