Skip to content

fix: module root path is only loaded on init and should not be modified #22

fix: module root path is only loaded on init and should not be modified

fix: module root path is only loaded on init and should not be modified #22

Workflow file for this run

name: Publish
on:
push:
branches:
- 'main'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
with:
version: 'latest'
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Test
run: pnpm test
- name: Build
run: pnpm build
- name: Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}