Skip to content

Commit

Permalink
fix: 💚 an attempt to fix the errors
Browse files Browse the repository at this point in the history
Signed-off-by: Newton <5769156+iamnewton@users.noreply.github.com>
  • Loading branch information
iamnewton committed Oct 23, 2024
1 parent 4f1b44e commit df31088
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,18 @@ permissions:

jobs:
setup:
uses: ./.github/workflows/setup.workflow.yml
with:
fetch-depth: 0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v4
with:
cache: npm
node-version: 20.x

- run: npm ci

super-lint:
needs: setup
Expand Down
15 changes: 12 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,18 @@ on:

jobs:
setup:
uses: ./.github/workflows/setup.workflow.yml
with:
fetch-depth: 0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v4
with:
cache: npm
node-version: 20.x

- run: npm ci

# Run visual and composition tests with Chromatic
visual-and-composition:
Expand Down

0 comments on commit df31088

Please sign in to comment.