chore: Update test script in package.json #15
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: Create Release and Publish to npm | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: Create Release and Publish to npm | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies | |
run: npm install | |
- name: Run tests | |
run: npm test | |
- name: Bump version | |
id: bump_version | |
run: | | |
# Incrementa a versão usando standard-version | |
npx standard-version --release-as patch | |
# Obter nova versão | |
NEW_VERSION=$(node -p "require('./package.json').version") | |
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV | |
echo "NEW_VERSION=$NEW_VERSION" | |
# Adiciona commit e tag | |
git push --follow-tags origin main | |
- name: Create GitHub release | |
id: create_release | |
uses: actions/create-release@v1 | |
with: | |
tag_name: "v${{ env.NEW_VERSION }}" | |
release_name: Release ${{ env.NEW_VERSION }} | |
body: | | |
Release notes for ${{ env.NEW_VERSION }} | |
draft: false | |
prerelease: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish to npm | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |