chore(deps-dev): bump the dev-dependencies group across 1 directory with 10 updates #822
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
# Run linting, unit tests, check build is possible. | |
# Standard requirements that should always be green. | |
# Tested on NodeJS LTS and current stable. | |
name: Verify | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
merge_group: | |
jobs: | |
node: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ['20', '22', '23'] | |
steps: | |
- uses: extractions/setup-just@v1 | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
- name: Install dependencies | |
run: just install | |
- name: Build | |
run: just build | |
- name: Lint | |
run: just lint . | |
- name: Unit tests | |
run: just test | |
chrome: | |
runs-on: ubuntu-latest | |
services: | |
gstreamer: | |
image: steabert/gst-rtsp-launch | |
ports: | |
- 8554:8554 | |
steps: | |
- uses: extractions/setup-just@v1 | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: yarn | |
- name: Install dependencies | |
run: just install | |
- name: Build | |
run: just build | |
- name: Test basic video functionality | |
run: scripts/ci-video-test.sh chrome | |
- name: Archive logs | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: logs | |
path: | | |
tcp-ws-proxy.log | |
http-server.log | |
firefox: | |
runs-on: ubuntu-latest | |
services: | |
gstreamer: | |
image: steabert/gst-rtsp-launch | |
ports: | |
- 8554:8554 | |
steps: | |
- uses: extractions/setup-just@v1 | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: yarn | |
- name: Install dependencies | |
run: just install | |
- name: Build | |
run: just build | |
- name: Test basic video functionality | |
run: scripts/ci-video-test.sh firefox | |
edge: | |
runs-on: ubuntu-latest | |
services: | |
gstreamer: | |
image: steabert/gst-rtsp-launch | |
ports: | |
- 8554:8554 | |
steps: | |
- uses: extractions/setup-just@v1 | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: yarn | |
- name: Install dependencies | |
run: just install | |
- name: Build | |
run: just build | |
- name: Test basic video functionality | |
run: scripts/ci-video-test.sh edge |