From 351abd6425bb847f86322267a4de88dbfb4f5822 Mon Sep 17 00:00:00 2001 From: Yongmin Hong Date: Tue, 18 Jun 2024 19:06:01 +0900 Subject: [PATCH] CI(GitHub Actions): add npm autopublishing script Summary: Handles (eslint|prettier)-config in one script. Signed-off-by: Yongmin Hong Test Plan: `arc land` and push a tag for testing. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D356 --- .github/workflows/npm-pub.yml | 49 +++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/npm-pub.yml diff --git a/.github/workflows/npm-pub.yml b/.github/workflows/npm-pub.yml new file mode 100644 index 0000000..d17d41f --- /dev/null +++ b/.github/workflows/npm-pub.yml @@ -0,0 +1,49 @@ +--- +name: Publish Package to npmjs + +on: + push: + tags: + - 'eslint-config@v*' + - 'prettier-config@v*' + +jobs: + eslint-config: + runs-on: ubuntu-latest + if: github.ref_name == 'eslint-config@v*' + 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: + runs-on: ubuntu-latest + if: github.ref_name == 'prettier-config@v*' + 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 }}