feat: Update CSpell version (8.16.0) #4893
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: "build-test" | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
action-is-pristine: # make sure nothing changes in the action. | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: streetsidesoftware/actions/public/setup-node-pnpm@v1 | |
- run: pnpm i | |
- run: git --no-pager diff --compact-summary --exit-code | |
clean-build: # make sure nothing changes with a clean build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: streetsidesoftware/actions/public/setup-node-pnpm@v1 | |
- run: pnpm i | |
# Ensure the repository is clean after build | |
- run: pnpm clean-build | |
# test TypeScript build | |
- run: | | |
cd action-src | |
pnpm build:tsc | |
- run: git --no-pager diff --compact-summary --exit-code | |
coverage: # run coverage and unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: streetsidesoftware/actions/public/setup-node-pnpm@v1 | |
- run: pnpm i | |
- env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: GITHUB_OUTPUT="" pnpm coverage | |
- name: Upload coverage Coveralls | |
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8 # 2.3.4 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ./action-src/coverage/lcov.info | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: "./action-src" | |
files: ./coverage/lcov.info |