style: adding dark theme styles in input #3060
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: Automated Tests and Linting | |
on: | |
pull_request: | |
branches: ['main'] | |
jobs: | |
test-prettier-lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [12.22.1] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install packages | |
run: yarn install --frozen-lockfile | |
- name: Run Tests | |
run: yarn test:coverage | |
- uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: yarn test:coverage | |
- name: Run Prettier | |
run: yarn prettier | |
- name: Run Lint | |
run: yarn lint | |
- name: Run Build | |
run: yarn build |