docs: update CHANGELOG to include the change about rename
function
#197
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
jobs: | |
lint: | |
name: run lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-repo | |
- run: pnpm run lint --max-warnings=0 | |
format: | |
name: run format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-repo | |
- run: pnpm prettier --check . | |
build: | |
name: run build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-repo | |
- run: pnpm run build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist | |
type-check: | |
name: run type-check | |
runs-on: ubuntu-latest | |
needs: [build] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-repo | |
- uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
path: dist | |
- run: pnpm run type-check | |
test: | |
name: run test | |
needs: [build] | |
strategy: | |
matrix: | |
node_version: [18.x, 20.x] | |
os: [ubuntu-latest] | |
include: | |
- node_version: 20.x | |
os: windows-latest | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-repo | |
with: | |
node-version: ${{ matrix.node_version }} | |
- uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
path: dist | |
- run: pnpm run test |