fix(update): list updates, display progress and run requests in parallel #18
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: push | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-test-release: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
- run: bun install | |
- run: bun run build | |
- run: bun test | |
- name: 📢 Release | |
uses: tobua/release-npm-action@v3 | |
with: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |