7429/feature/add trending score to solr #11216
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
name: javascript_tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
paths: | |
- 'Makefile' | |
- '.github/workflows/javascript_tests.yml' | |
- 'vendor/js/**' | |
- '**.json' | |
- '**.js' | |
- '**.vue' | |
- '**.less' | |
- '**.css' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
javascript_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
# Should match what's in our Dockerfile | |
node-version: '20' # Also update the `key` in the `with` map, below | |
- uses: actions/cache@v4 | |
id: npm-cache | |
with: | |
# Caching node_modules isn't recommended because it can break across | |
# Node versions and won't work with npm ci (See https://github.com/actions/cache/blob/main/examples.md#node---npm ) | |
# But we pin the node version, and we don't update it that often anyways. And | |
# we don't use `npm ci` specifically to try to get faster CI flows. So caching | |
# `node_modules` directly. | |
path: 'node_modules' | |
# Note the version number in this string -- update it when updating Node! | |
key: ${{ runner.os }}-node20-${{ hashFiles('**/package-lock.json') }} | |
- if: steps.npm-cache.outputs.cache-hit != 'true' | |
run: npm install --no-audit | |
- run: npm run lint | |
- run: make git | |
- run: npx concurrently --group 'make js' 'make css' 'make components' | |
- run: npm run test | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |