Skip to content

Commit

Permalink
chore: fix ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
farhoudshapouran committed Feb 2, 2025
1 parent ebc7c57 commit 469431b
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,16 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"

- name: Setup project
uses: ./.github/actions/setup

- name: Lint files
Expand All @@ -26,10 +32,16 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"

- name: Setup project
uses: ./.github/actions/setup

- name: Run unit tests
Expand All @@ -38,10 +50,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"

- name: Setup project
uses: ./.github/actions/setup

- name: Build package
Expand Down

0 comments on commit 469431b

Please sign in to comment.