Skip to content

Commit

Permalink
emojis to yml steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Jagoda11 committed May 21, 2024
1 parent 1bfff5d commit a31ec06
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,17 @@ jobs:
matrix:
node-version: [20.x, 21.x] # 📦 Test across Node.js versions 20.x and 21.x
steps:
- uses: actions/checkout@v3 # ✅ Checkout code
- name: Use Node.js ${{ matrix.node-version }} # 📌 Setup Node.js
- name: 📥 Checkout code
uses: actions/checkout@v3
- name: 📌 Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci # 📦 Install dependencies
- run: npm run build --if-present # 🏗️ Build the project
- run: npm run test:coverage # 🧪
- name: 📦 Install dependencies
run: npm ci
- name: 🏗️ Build the project
run: npm run build --if-present
- name: 🧪 Run tests with coverage
run: npm run test:coverage
env:
CI: true # 🤖 CI mode
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2

0 comments on commit a31ec06

Please sign in to comment.