This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
fix(delete-method): correção body undefined ao fazer requisição #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI - Publish Package | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish-grp: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: NodeJs Environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Packages | |
run: corepack enable && pnpm install --frozen-lockfile | |
- name: Test Package | |
run: pnpm run test | |
- name: Build Package | |
run: pnpm run build | |
- name: Set package registry GRP | |
run: npm config set registry https://npm.pkg.github.com | |
- name: Github package registry authentication | |
run: npm set //npm.pkg.github.com/:_authToken ${{ secrets.PUBLISH_TOKEN_GRP }} | |
- name: Publish Packages on GRP | |
run: cd dist && npm publish --provenance --access public | |
publish-npm: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
needs: [publish-grp] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: NodeJs Environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Packages | |
run: corepack enable && pnpm install --frozen-lockfile | |
- name: Test Package | |
run: pnpm run test | |
- name: Build Package | |
run: pnpm run build | |
- name: Npm registry authentication | |
run: npm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }} | |
- name: Publish Packages on NPM | |
run: cd dist && npm publish --provenance --access public | |