Replace some single-quotes with double-quotes #222
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: CI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
run-tests: | |
name: Test the project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install the library and its dependencies | |
run: npm install | |
- name: Set path to a chromium browser (needed for screenshot tests) | |
# See https://stackoverflow.com/a/57627150/8583692 | |
# and https://stackoverflow.com/a/4181721/8583692 | |
run: | | |
echo "{\"chromiumPath\": \"$(which chromium)\"}" > local.json | |
- name: Run the tests (with coverage) | |
id: run-tests | |
run: ./node_modules/.bin/jest --ci --colors --coverage # OR npm run test-with-coverage | |
- name: Upload the test report | |
if: always() # Run even if the previous steps failed | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-report | |
path: | | |
test-report.xml | |
test-report.html | |
- name: Upload the test coverage report | |
if: ${{ steps.run-tests.conclusion == 'success' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-report | |
path: coverage/ | |
- name: Download coverage report | |
if: ${{ steps.run-tests.conclusion == 'success' }} | |
uses: actions/download-artifact@v3 | |
with: | |
name: coverage-report | |
path: coverage/ | |
- name: Send the report to Codecov | |
if: ${{ steps.run-tests.conclusion == 'success' }} | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage/clover.xml | |
directory: ./coverage/ | |
verbose: true | |
fail_ci_if_error: false | |
- name: Run lint | |
run: npm run lint-html | |
- name: Upload the lint HTML report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: lint-report | |
path: lint.html |