left border on highlighted lines #95
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: CI Checks | |
on: push | |
jobs: | |
ci-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Install Node.js 18 📗 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install pnpm 📦 | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install and Test 🔧 | |
run: | # Install npm packages and build the Storybook files | |
pnpm install | |
pnpm run typecheck | |
pnpm run fmt:check | |
pnpm run lint | |
pnpm run test run |