Skip to content

Commit

Permalink
adjusting the ci Steps
Browse files Browse the repository at this point in the history
  • Loading branch information
maou-shonen committed Jul 6, 2024
1 parent ff44ede commit 91b4a7e
Showing 1 changed file with 38 additions and 9 deletions.
47 changes: 38 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,56 @@ on:
- main

jobs:
ci:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
node-version: 20
cache: pnpm
- run: pnpm install

- run: pnpm run typecheck
- run: pnpm run lint
- run: pnpm run build
- run: pnpm run test

coverage:
needs:
- lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install

- run: pnpm run coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

unit-test:
needs:
- coverage
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm install

- run: pnpm run test

0 comments on commit 91b4a7e

Please sign in to comment.