-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (41 loc) · 1.08 KB
/
publish-to-npm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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