Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Node CI

on:
workflow_dispatch:
push:
branches:
- main
- 'v*' # prior release branches (e.g. `v0.30.x` branch)
- "v*" # prior release branches (e.g. `v0.30.x` branch)
tags:
- 'v*'
- "v*"
pull_request:

jobs:
Expand All @@ -28,7 +29,7 @@ jobs:
scenarios:
needs: discover_matrix
name: ${{ matrix.name }}
runs-on: '${{ matrix.os }}-latest'
runs-on: "${{ matrix.os }}-latest"
strategy:
fail-fast: false
matrix: ${{fromJson(needs.discover_matrix.outputs.matrix)}}
Expand Down Expand Up @@ -62,7 +63,7 @@ jobs:
scenarios_legacy:
needs: discover_matrix_legacy
name: ${{ matrix.name }}
runs-on: '${{ matrix.os }}-latest'
runs-on: "${{ matrix.os }}-latest"
strategy:
fail-fast: false
matrix: ${{fromJson(needs.discover_matrix_legacy.outputs.matrix)}}
Expand Down
Loading