1
0

rewrite in ts

This commit is contained in:
2022-06-25 23:54:09 +02:00
parent 702ecd8d4b
commit 1a376ebf3b
8 changed files with 296 additions and 550 deletions

View File

@@ -8,11 +8,12 @@ jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm run build
- run: npm publish --tag pre --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
@@ -23,8 +24,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm run build
- run: npm publish --tag pre --access public
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}