Skip to content

Commit

Permalink
fix: ci runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Naturalclar committed Jun 25, 2023
1 parent f7ae4cb commit 6b8dce3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ on: push

jobs:
lint:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16]
node-version: [18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -26,16 +26,16 @@ jobs:
path: ${{ steps.pnpm-cache.outputs.dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
${{ runner.os }}-pnpm-store-
- name: Install Dependencies
run: pnpm install
- name: Run Format
run: pnpm format
typecheck:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16]
node-version: [18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -55,7 +55,7 @@ jobs:
path: ${{ steps.pnpm-cache.outputs.dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
${{ runner.os }}-pnpm-store-
- name: Install Dependencies
run: pnpm install
- run: pnpm build

0 comments on commit 6b8dce3

Please sign in to comment.