Skip to content

Update @jupyterlab/services to version 7.2.2 #91

Update @jupyterlab/services to version 7.2.2

Update @jupyterlab/services to version 7.2.2 #91

Workflow file for this run

name: Node.js Package
on:push

Check failure on line 3 in .github/workflows/npmpublish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/npmpublish.yml

Invalid workflow file

You have an error in your yaml syntax on line 3
release:
types: created
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm test
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
publish-gpr:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
scope: '@your-github-username'
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}