Skip to content

Commit

Permalink
ci: update test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed May 22, 2023
1 parent d925e9e commit 476cde5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -45,18 +45,25 @@ jobs:
run: pnpm run test:types

test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
node: [18]
os: [ubuntu-latest]
fail-fast: false

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 18
node-version: ${{ matrix.node }}

- run: corepack enable

- name: Install
run: pnpm i

- name: Test
run: pnpm run test:run
run: pnpm run test
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -35,7 +35,6 @@
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:run": "vitest run",
"test:types": "vue-tsc --noEmit",
"release": "bumpp --commit --push --tag"
},
Expand Down

0 comments on commit 476cde5

Please sign in to comment.