Compare commits
2 Commits
b209e051e5
...
8b704f1f82
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b704f1f82 | ||
|
|
36ed19e195 |
@@ -33,13 +33,14 @@ jobs:
|
||||
uses: actions/cache@v4
|
||||
id: yarn-cache
|
||||
with:
|
||||
path: ~/.cache/yarn
|
||||
path: ${{ github.workspace }}/.yarn/cache
|
||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile --prefer-offline
|
||||
# --immutable ensures the lockfile isn't changed (replaces --frozen-lockfile)
|
||||
run: yarn install --immutable
|
||||
|
||||
- name: Build Svelte App
|
||||
run: yarn build
|
||||
|
||||
@@ -38,13 +38,14 @@ jobs:
|
||||
uses: actions/cache@v4
|
||||
id: yarn-cache
|
||||
with:
|
||||
path: ~/.cache/yarn
|
||||
path: ${{ github.workspace }}/.yarn/cache
|
||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile --prefer-offline
|
||||
# --immutable ensures the lockfile isn't changed (replaces --frozen-lockfile)
|
||||
run: yarn install --immutable
|
||||
|
||||
- name: Validation
|
||||
run: |
|
||||
|
||||
@@ -45,10 +45,11 @@ jobs:
|
||||
uses: actions/cache@v4
|
||||
id: yarn-cache
|
||||
with:
|
||||
path: ~/.cache/yarn
|
||||
path: ${{ github.workspace }}/.yarn/cache
|
||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile --prefer-offline
|
||||
# --immutable ensures the lockfile isn't changed (replaces --frozen-lockfile)
|
||||
run: yarn install --immutable
|
||||
|
||||
@@ -34,13 +34,14 @@ jobs:
|
||||
uses: actions/cache@v4
|
||||
id: yarn-cache
|
||||
with:
|
||||
path: ~/.cache/yarn
|
||||
path: ${{ github.workspace }}/.yarn/cache
|
||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile --prefer-offline
|
||||
# --immutable ensures the lockfile isn't changed (replaces --frozen-lockfile)
|
||||
run: yarn install --immutable
|
||||
|
||||
- name: Type Check
|
||||
run: yarn svelte-check --threshold warning
|
||||
|
||||
Reference in New Issue
Block a user