Bump @alwaysmeticulous/client from 2.73.0 to 2.76.0 #868
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
# Workflow for automated Meticulous tests | |
name: Tests - react-bmi-calculator | |
on: | |
push: | |
branches: | |
- main | |
- releases/* | |
pull_request: {} | |
permissions: | |
actions: write | |
contents: read | |
statuses: write | |
pull-requests: write | |
packages: read | |
jobs: | |
test: | |
name: Report diffs (using app url) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Use Node.js LTS | |
id: nodejs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
cache: yarn | |
- name: Cache node_modules | |
uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
tests/react-bmi-calculator/node_modules | |
key: node-modules-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
node-modules-${{ runner.os }} | |
- name: Install react-bmi-calculator dependencies | |
working-directory: ./tests/react-bmi-calculator | |
run: yarn install --frozen-lockfile --non-interactive | |
- name: Build react-bmi-calculator | |
working-directory: ./tests/react-bmi-calculator | |
run: yarn build | |
- name: Serve react-bmi-calculator | |
working-directory: ./tests/react-bmi-calculator | |
run: | | |
yarn serve & | |
sleep 4 | |
- name: Install report-diffs-action dependencies | |
run: yarn install --frozen-lockfile --non-interactive | |
- name: Use local dockerfile | |
run: node ./scripts/use-local-dockerfile.js | |
- name: Run report-diffs-action | |
id: test | |
uses: ./ | |
with: | |
api-token: "${{ secrets.METICULOUS_API_TOKEN }}" | |
app-url: http://localhost:3000 | |
tests-file: tests/react-bmi-calculator/meticulous.json | |
test-suite-id: "test Meticulous with app url" |