chore(deps-dev): bump vite from 7.2.6 to 7.3.0 #2959
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: write | |
| packages: write | |
| jobs: | |
| build_test_publish: | |
| name: Build, test and publish | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f | |
| with: | |
| node-version: 24.x | |
| cache: yarn | |
| - name: Build, lint and test | |
| run: | | |
| yarn --immutable | |
| yarn lint | |
| yarn build:ts | |
| yarn test | |
| - name: Release on npm | |
| if: | | |
| github.event_name != 'pull_request' && | |
| !startsWith(github.event.head_commit.message, 'chore') | |
| env: | |
| NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
| run: | | |
| git config "user.name" "ffflobot" | |
| git config "user.email" "[email protected]" | |
| echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc | |
| yarn release |