Skip to content

chore: bump version to 3.0.0-SNAPSHOT #1

chore: bump version to 3.0.0-SNAPSHOT

chore: bump version to 3.0.0-SNAPSHOT #1

#
# Copyright 2025 Apollo Authors
#
# 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.
#
# This workflow runs JavaScript tests in apollo-portal static/scripts directory.
# Tests are discovered automatically by pattern: test_*.js
name: JavaScript tests
on:
push:
branches: [master]
paths:
- 'apollo-portal/src/main/resources/static/scripts/**/*.js'
- 'apollo-portal/src/test/resources/static/scripts/test_*.js'
- '.github/workflows/javascript-test.yml'
pull_request:
branches: [master]
paths:
- 'apollo-portal/src/main/resources/static/scripts/**/*.js'
- 'apollo-portal/src/test/resources/static/scripts/test_*.js'
- '.github/workflows/javascript-test.yml'
jobs:
js-test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Find and run JavaScript tests
run: |
TEST_DIR="apollo-portal/src/test/resources/static/scripts"
if [ ! -d "$TEST_DIR" ]; then
echo "WARNING: Test directory $TEST_DIR does not exist yet. Skipping JS tests."
exit 0
fi
TEST_FILES=$(find "$TEST_DIR" -name 'test_*.js' -type f)
if [ -z "$TEST_FILES" ]; then
echo "ERROR: No test files found matching test_*.js in $TEST_DIR"
exit 1
fi
FAILED=0
while IFS= read -r f; do
echo "--- Running: $f ---"
node "$f" || FAILED=1
done <<< "$TEST_FILES"
if [ "$FAILED" -ne 0 ]; then
echo "Some tests failed."
exit 1
fi