Yongmin Hong
cbfa3411b3
Summary: Fix P185 failure. Also fix L1 (`npm pkg fix`) for (eslint|prettier)-config. Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: `arc lint`, and push tag again Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D358
57 lines
1.6 KiB
YAML
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 --fund=false
|
|
- 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 }}
|