chore: version 0.1.88 (#111) #95
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: Run CI checks | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| # if the version hasn't changed, don't bother | |
| - package.json | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 4 | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: '22' | |
| cache: npm | |
| registry-url: 'https://registry.npmjs.org' | |
| scope: '@supabase' | |
| # Ensure npm 11.5.1 or later is installed for trusted publishing support | |
| - name: Update npm | |
| run: | | |
| # Temporary fix for https://github.com/npm/cli/issues/9151 | |
| npm install -g npm@~11.11.0 | |
| npm install -g npm@latest | |
| - run: npm ci | |
| - run: npm publish --access public |