26 move json spell checker #2
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: JSON Spell Checker CI Pipeline | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "node/json-spell-checker/**" | |
pull_request: | |
branches: [main] | |
paths: | |
- "node/json-spell-checker/**" | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: node/json-spell-checker | |
jobs: | |
setup-and-test: | |
name: Tests (${{ matrix.os }}, Node ${{ matrix.node-version }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [18.x, 20.x] | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.os }} ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- name: Install Dependencies | |
run: npm ci | |
- name: Test | |
timeout-minutes: 10 | |
run: npm run test:coverage | |
- name: Upload to codecov.io | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: coverage/lcov.info | |
verbose: true |