Fix width of date table column #1195
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: Run npm test & npm lint on Pull Requests | |
on: | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- run: npm ci | |
- name: Run unit tests | |
run: npm run test | |
# - name: Test Report | |
# uses: dorny/test-reporter@v1 | |
# if: success() || failure() # run this step even if previous step failed | |
# with: | |
# name: JEST Tests # Name of the check run which will be created | |
# path: reports/junit.xml # Path to test results | |
# reporter: jest-junit # Format of test results | |
- name: Run linter | |
run: npm run lint |