fix: analytics oauth scope values (#80) #76
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: Run CI checks | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
# if the version hasn't changed, don't bother | |
- package.json | |
jobs: | |
publish: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 4 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
cache: npm | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@supabase' | |
- run: npm ci | |
- run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }} |