sandbox/.github/workflows/npm-pub.yml
Yongmin Hong 9c85bcb30d
CI(NPM): .npmrc audit=false, fund=false
Summary:
Handled by dependabot.

Ref D375.

Signed-off-by: Yongmin Hong <revi@omglol.email>

Test Plan: land it, do npm ci or watch GitHub Actions log without audit/fund data.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D384
2024-06-21 16:09:14 +09:00

57 lines
1.6 KiB
YAML

---
name: Publish Package to npmjs
on:
push:
tags:
- 'eslint-config@v*'
- 'prettier-config@v*'
jobs:
eslint-config:
name: 'Publish eslint-config to npm'
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
if: contains(github.ref_name, 'eslint-config@')
steps:
- name: 'Checkout'
uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- name: 'Setup node.js'
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: 'Install dependencies'
run: npm ci
- name: 'Publish to npm'
run: npm publish --provenance --access public
working-directory: './npm/eslint-config'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
prettier-config:
name: 'Publish prettier-config to npm'
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
if: contains(github.ref_name, 'prettier-config@')
steps:
- name: 'Checkout'
uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- name: 'Setup node.js'
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: 'Install dependencies'
run: npm ci --fund=false
- name: 'Publish to npm'
run: npm publish --provenance --access public
working-directory: './npm/prettier-config'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}