diff --git a/.github/workflows/npm-publish.yaml b/.github/workflows/npm-publish.yaml index 0128b64..f081a80 100644 --- a/.github/workflows/npm-publish.yaml +++ b/.github/workflows/npm-publish.yaml @@ -9,6 +9,7 @@ on: jobs: build: + name: Lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -20,6 +21,7 @@ jobs: - run: npm run lint publish-gpr: + name: Release needs: build runs-on: ubuntu-latest steps: @@ -30,7 +32,7 @@ jobs: cache: 'npm' registry-url: https://npm.pkg.github.com/ - run: npm ci - - run: npm build + - run: npm run build - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}