feat(js): add missing TLS rule for Node (#316) #1043
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/hapi", | |
"javascript/lang", | |
"javascript/node", | |
"javascript/react", | |
"javascript/third_parties", | |
"ruby/lang", | |
"ruby/rails", | |
"ruby/third_parties", | |
"java/lang", | |
"java/spring", | |
"java/android", | |
"php/lang", | |
"php/symfony", | |
"php/third_parties", | |
"python/lang", | |
"go/lang", | |
"go/gosec", | |
"go/gorilla", | |
] | |
steps: | |
- uses: actions/checkout@v3 | |
- run: yarn install --frozen-lockfile | |
- name: Test ${{ matrix.group }} | |
run: BEARER_VERSION=${{matrix.version}} yarn test tests/${{ matrix.group }} | |
shell: bash |