docs: configure spell-check #5620
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: "Test" | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docs: | |
uses: FuelLabs/github-actions/.github/workflows/vp-docs.yml@master | |
with: | |
doc-folder-path: "apps/docs/src" | |
spellcheck-config-path: "apps/docs/.spellcheck.yml" | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: CI Setup | |
uses: ./.github/actions/test-setup | |
- name: Verify package.json integrity | |
run: pnpm lint:package-jsons | |
- name: Forc Format Check | |
run: pnpm forc:check | |
# linting of some tests depends on pretest being run so that it generates the necessary files | |
- name: Pretest | |
run: pnpm pretest | |
- name: Lint | |
run: pnpm lint | |
- name: Find PR Number | |
uses: jwalton/gh-find-current-pr@v1 | |
id: findPr | |
- name: Run tests and collect coverage | |
if: ${{ !steps.findPr.outputs.number }} | |
run: pnpm ci:test -- --json --coverage --testLocationInResults --outputFile=report.master.json | |
- name: Upload coverage to Github artifacts | |
uses: actions/upload-artifact@v3 | |
if: ${{ !steps.findPr.outputs.number }} | |
with: | |
name: coverage-reports | |
path: report.master.json | |
- name: Download coverage artifact | |
uses: dawidd6/action-download-artifact@v2 | |
if: ${{ steps.findPr.outputs.number }} | |
with: | |
workflow: test.yaml | |
branch: master | |
name: coverage-reports | |
path: coverage-reports | |
- name: Run tests and post reports to PR | |
uses: ArtiomTr/jest-coverage-report-action@v2 | |
if: ${{ steps.findPr.outputs.number }} | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
package-manager: pnpm | |
annotations: failed-tests | |
test-script: pnpm ci:test | |
prnumber: ${{ steps.findPr.outputs.number }} | |
base-coverage-file: coverage-reports/report.master.json | |
live-tests: | |
name: Run Live Tests | |
if: github.head_ref == 'changeset-release/master' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: CI Setup | |
uses: ./.github/actions/test-setup | |
- name: Pretest | |
run: pnpm pretest | |
- name: Run Isolated Tests | |
run: pnpm test:e2e | |
env: | |
FUEL_NETWORK_URL: https://beta-4.fuel.network/graphql | |
FUEL_NETWORK_GENESIS_KEY: ${{ secrets.FUEL_NETWORK_GENESIS_KEY }} |