diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c1fa14c..dc95a51f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,27 +26,16 @@ jobs: run: pnpm run lint build: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - node-version: [18.17.0] - os: [ubuntu-latest] - + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - - name: Install pnpm - uses: pnpm/action-setup@v2 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + - uses: pnpm/action-setup@v2 + - uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} - registry-url: https://registry.npmjs.org/ + node-version: 18.17.0 cache: pnpm - - name: Install Dependencies + - name: Install run: pnpm install - name: Build