Skip to content

v2.1.0

v2.1.0 #1

Workflow file for this run

name: Release
on:
release:
types: [published]
env:
lockfile: pnpm-lock.yaml
node_version: "18"
pnpm_version: "8"
jobs:
npm-publish:
name: Publish to NPM
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
name: Install PNPM
id: pnpm-install
with:
version: ${{ env.pnpm_version }}
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.node_version }}
cache: pnpm
cache-dependency-path: ${{ env.lockfile }}
- name: Install dependencies
run: pnpm install
- name: Run ESLint
run: pnpm run lint:ci
- name: Run tests
run: pnpm run test
- name: Run tsc
run: node_modules/.bin/tsc
- name: Build dist
run: pnpm run build
- name: Publish to npm
id: publish
run: |
pnpm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
pnpm publish --access public --no-git-checks