Skip to content

Bump webpack-cli in the update-npm-dependencies group (#15) #16

Bump webpack-cli in the update-npm-dependencies group (#15)

Bump webpack-cli in the update-npm-dependencies group (#15) #16

Workflow file for this run

name: Publish
on:
push:
branches: [main]
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: bash .ci/runChecks.sh
publish-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: current
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build:ci
env:
BUILD_NUMBER: ${{ github.run_number }}
COMMIT_HASH: ${{ github.sha }}
- run: npx enhanced-publish --if-possible --use-preid-as-tag
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
needs: ["run-checks"]