Skip to content

Commit

Permalink
Review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechBarczynski committed May 13, 2024
1 parent acb86c2 commit 729c330
Show file tree
Hide file tree
Showing 4 changed files with 677 additions and 243 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/demos_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: 📥 Checkout repo
- name: Checkout repo
uses: actions/checkout@v2
with:
submodules: "true"

- name: 🛠 Setup Node.js
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "20"

- name: 📦 Cache dependencies
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
Expand All @@ -38,10 +38,14 @@ jobs:
${{ runner.os }}-node-
${{ runner.os }}-
- name: 💾 Install project dependencies
- name: Install project dependencies
working-directory: ./demos
run: npm install
run: npm ci

- name: 📖 Lint code
- name: Lint code
working-directory: ./demos
run: npm run lint

- name: Typechecking code
working-directory: ./demos
run: npm run typecheck
Loading

0 comments on commit 729c330

Please sign in to comment.