feat: added react 19 support and other fixes (#41) #9
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: Publish to NPM | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| jobs: | |
| publish-npm: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.11.0 | |
| - name: Download & Build Icons | |
| run: npm ci --progress=false && npm i @iconscout/unicons@latest && npm run generate | |
| - name: Publish to NPM | |
| run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc && npm publish | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |