Skip to content

Bump js-yaml from 4.1.1 to 4.3.1 in /selenium-mochajs #79

Bump js-yaml from 4.1.1 to 4.3.1 in /selenium-mochajs

Bump js-yaml from 4.1.1 to 4.3.1 in /selenium-mochajs #79

# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Selenium Mocha.js
on:
push:
paths:
- 'selenium-mochajs/**'
- '.github/workflows/macos-selenium-mochajs.yml'
pull_request:
paths:
- 'selenium-mochajs/**'
- '.github/workflows/macos-selenium-mochajs.yml'
defaults:
run:
working-directory: selenium-mochajs
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
cache: npm
cache-dependency-path: selenium-mochajs/package-lock.json
node-version-file: '.nvmrc'
- name: Install dependencies
working-directory: selenium-mochajs
run: npm install
- name: Run tests
working-directory: selenium-mochajs
run: npm test
- name: Dump log
if: always()
run: cat chromedriver.log