-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 978 Bytes
/
build.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
name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup 🔌
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: https://registry.npmjs.org/
- name: Install dependencies 👨🏻💻
run: npm ci
- name: Run tests 🧪
run: npm t
- name: Publish 🚀
if: startsWith(github.ref, 'refs/tags/')
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
- name: Publish to GitHub 🚀
if: startsWith(github.ref, 'refs/tags/')
run: |
npm set //npm.pkg.github.com/:_authToken $GITHUB_TOKEN
npm publish --access public --@moccu:registry=https://npm.pkg.github.com
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}