We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ffd81 commit 40f1f30Copy full SHA for 40f1f30
.github/workflows/test.yml
@@ -80,6 +80,32 @@ jobs:
80
81
- name: lint
82
run: yarn test:lint
83
+ needs: setup
84
+
85
+ typecheck:
86
+ runs-on: ${{ matrix.os }}
87
88
+ strategy:
89
+ matrix:
90
+ os: [ubuntu-latest]
91
92
+ steps:
93
+ - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
94
+ - run: corepack enable
95
+ - uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
96
+ with:
97
+ node-version: 18
98
+ cache: "yarn"
99
100
+ - name: restore workspace cache
101
+ uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
102
103
+ path: |
104
+ node_modules
105
+ packages/*/node_modules
106
+ distributions/*/node_modules
107
+ packages/*/dist
108
+ key: ${{ matrix.os }}-node-v18-nuxt-${{ github.sha }}
109
110
- name: test types
111
run: yarn test:types
0 commit comments