-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 766 Bytes
/
main.yaml
File metadata and controls
33 lines (31 loc) · 766 Bytes
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
name: "main"
on:
push:
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: node
uses: actions/setup-node@v2
with:
node-version: 20
registry-url: https://registry.npmjs.org
- name: install
run: npm ci
- name: lint
run: npm run lint:ci
- name: test
env:
FORCE_COLOR: 1
run: npm run test:ci
- name: build
run: npm run build
- name: publish
if: ${{ github.ref_type == 'tag' }}
run: |
npm version $GITHUB_REF_NAME --no-git-tag-version --no-commit-hooks
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}