chore(deps-dev): bump webpack from 5.95.0 to 5.96.1 #27251
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Testing Yari | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
cache-dependency-path: | | |
yarn.lock | |
client/pwa/yarn.lock | |
libs/**/*.js | |
- name: Cache @vscode/ripgrep bin | |
uses: actions/cache@v4 | |
with: | |
key: vscode-ripgrep-bin-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('yarn.lock') }} | |
path: node_modules/@vscode/ripgrep/bin/ | |
- name: Install all yarn packages (ROOT) | |
run: yarn --frozen-lockfile | |
env: | |
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install all yarn packages (pwa) | |
working-directory: client/pwa | |
run: yarn --frozen-lockfile | |
- name: Lint prettier | |
run: yarn prettier-check | |
- name: Lint ESLint | |
run: yarn eslint | |
- name: Lint stylelint | |
run: yarn stylelint | |
- name: Check TypeScript | |
run: yarn check:tsc | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
- name: Cache @vscode/ripgrep bin | |
uses: actions/cache@v4 | |
with: | |
key: vscode-ripgrep-bin-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('yarn.lock') }} | |
path: node_modules/@vscode/ripgrep/bin/ | |
- name: Install all yarn packages | |
run: yarn --frozen-lockfile | |
env: | |
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Unit testing client | |
run: yarn test:client | |
- name: Unit testing libs | |
run: yarn test:libs | |
- name: Build and start server | |
id: server | |
env: | |
ENV_FILE: .env.testing | |
run: | | |
yarn build:prepare | |
yarn build:docs | |
yarn render:html | |
yarn start:static-server > /tmp/stdout.log 2> /tmp/stderr.log & | |
sleep 1 | |
curl --fail --retry-connrefused --retry 5 http://localhost:5042 > /dev/null | |
- name: Functional testing | |
run: | | |
yarn test:testing | |
yarn test:headless | |
- name: Basic m2h tool testing | |
env: | |
ENV_FILE: .env.testing | |
run: | | |
yarn m2h markdown/tool/m2h --locale en-US | |
diff -s testing/content/files/en-us/markdown/tool/m2h/index.html testing/content/files/en-us/markdown/tool/m2h/expected.html | |
- name: Debug server's stdout and stderr if tests failed | |
if: failure() && steps.server.outcome != 'skipped' | |
run: | | |
echo "STDOUT..................................................." | |
cat /tmp/stdout.log | |
echo "" | |
echo "STDERR..................................................." | |
cat /tmp/stderr.log |