fix: fire close on failed WebSocket connection #142
Workflow file for this run
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: Autobahn | |
on: | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
node-version: | |
default: '22' | |
type: string | |
pull_request: | |
paths: | |
- '.github/workflows/autobahn.yml' | |
- 'lib/web/websocket/**' | |
- 'test/autobahn/**' | |
permissions: | |
contents: read | |
jobs: | |
autobahn: | |
name: Autobahn Test Suite | |
runs-on: ubuntu-latest | |
container: node:22 | |
services: | |
fuzzingserver: | |
image: crossbario/autobahn-testsuite:latest | |
ports: | |
- '9001:9001' | |
options: --name fuzzingserver | |
volumes: | |
- ${{ github.workspace }}/test/autobahn/config:/config | |
- ${{ github.workspace }}/test/autobahn/reports:/reports | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
with: | |
persist-credentials: false | |
clean: false | |
- name: Restart Autobahn Server | |
# Restart service after volumes have been checked out | |
uses: docker://docker | |
with: | |
args: docker restart --time 0 --signal=SIGKILL fuzzingserver | |
- name: Setup Node.js@${{ inputs.node-version || '22' }} | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: ${{ inputs.node-version || '22' }} | |
- name: Run Autobahn Test Suite | |
run: npm run test:websocket:autobahn | |
env: | |
FUZZING_SERVER_URL: ws://fuzzingserver:9001 | |
LOG_ON_ERROR: false | |
- name: Report CI | |
id: report-ci | |
run: npm run test:websocket:autobahn:report | |
env: | |
FAIL_ON_ERROR: true |