Skip to content

@cypress/request v3.0.9 + drop Node.js 18.x #10

@cypress/request v3.0.9 + drop Node.js 18.x

@cypress/request v3.0.9 + drop Node.js 18.x #10

Workflow file for this run

# This workflow will publish this package to npm on each release created.
# NPM_TOKEN secret needs to be created via https://www.npmjs.com/settings/a8c/tokens/ (choose automation token) and stored in this repository.
#
# See https://docs.github.com/en/actions/guides/publishing-nodejs-packages#publishing-packages-to-the-npm-registry
name: Publish to npm
on:
release:
types: [created]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "latest"
registry-url: https://registry.npmjs.org/
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}