OAuth: Fix refresh token flow to log out user (#36) #130
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: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- "src/**" | |
- "tests/**" | |
branches: [main, master] | |
push: | |
paths: | |
- "src/**" | |
- "tests/**" | |
branches: [main, master] | |
jobs: | |
tests: | |
if: github.repository == 'raycast/utils' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: raycast/github-actions/[email protected] | |
- name: Setup node | |
uses: raycast/github-actions/[email protected] | |
- name: Npm Install | |
run: npm ci | |
- name: Npm Lint | |
run: npm run test | |
- name: Build | |
run: npm run build | |
- name: Npm Install Tests | |
run: npm ci | |
working-directory: ./tests | |
- name: Build tests | |
run: npm run build | |
working-directory: ./tests |