Skip to content

Split JS and JSX Rules #8

Split JS and JSX Rules

Split JS and JSX Rules #8

Workflow file for this run

name: Node.js CI
on:
release:
types: [published]
jobs:
check:
name: Prepare release...
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
# Setup .npmrc file to publish to npm
uses: actions/setup-node@v3
with:
node-version: '20.10.0'
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm ci
- name: release
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}