feat(javascript): revert result scope in jwt_not_revoked rule (#158) #551
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: Integration Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ["latest"] | |
group: | |
[ | |
"javascript/express", | |
"javascript/lang", | |
"javascript/react", | |
"javascript/third_parties", | |
"ruby/lang", | |
"ruby/rails", | |
"ruby/third_parties", | |
"java/lang", | |
"java/spring", | |
] | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm ci | |
- name: Test ${{ matrix.group }} | |
run: BEARER_VERSION=${{matrix.version}} npm test tests/${{ matrix.group }} | |
shell: bash |