Skip to content

refactor(paths): move var declaration to where its used #34

refactor(paths): move var declaration to where its used

refactor(paths): move var declaration to where its used #34

Workflow file for this run

name: Release
on:
push:
branches: master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 9
run_install: true
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Type check
run: pnpm type-check
- name: Test
run: pnpm test
- name: Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: pnpm dlx semantic-release