# Copyright © 2025-26 l5yth & contributors # # 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: JavaScript on: push: branches: [ "main" ] pull_request: branches: [ "main" ] paths: - '.github/**' - 'web/**' - 'tests/**' permissions: contents: read jobs: frontend: runs-on: ubuntu-latest defaults: run: working-directory: web steps: - uses: actions/checkout@v5 - name: Set up Node.js 22 uses: actions/setup-node@v4 with: node-version: '22' - name: Install dependencies run: npm ci - name: Run JavaScript tests run: npm test - name: Upload coverage to Codecov if: always() uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} files: web/reports/javascript-coverage.json flags: frontend name: frontend fail_ci_if_error: false env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - name: Upload test results to Codecov uses: codecov/test-results-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} files: web/reports/javascript-junit.xml flags: frontend