Updated dependencies (#12)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-07-11 17:18:44 +02:00
committed by GitHub
parent 3db69e0537
commit 641f7861b8
5 changed files with 4824 additions and 1836 deletions

View File

@ -7,14 +7,22 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- name: Checkout
uses: actions/checkout@v2
- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-version: 14
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build
- run: npm publish
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}