Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 2f89ce7

Browse files
committed
npm audit, start with publish workflow
1 parent 31bc670 commit 2f89ce7

File tree

3 files changed

+2920
-829
lines changed

3 files changed

+2920
-829
lines changed

.github/workflows/publish.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "build & deploy"
2+
on:
3+
push:
4+
tags:
5+
- "v*"
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v2
14+
with:
15+
node-version: '14.x'
16+
- run: npm install
17+
- run: npm run typecheck
18+
- run: npm run integration-test
19+
- run: npm run deploy -- -p ${{secrets.MARKETPLACE_PAT}}

0 commit comments

Comments
 (0)