Compare commits
2 Commits
b209e051e5
...
8b704f1f82
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b704f1f82 | ||
|
|
36ed19e195 |
@@ -33,13 +33,14 @@ jobs:
|
|||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
id: yarn-cache
|
id: yarn-cache
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/yarn
|
path: ${{ github.workspace }}/.yarn/cache
|
||||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-yarn-
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
- name: Install dependencies
|
- 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
|
- name: Build Svelte App
|
||||||
run: yarn build
|
run: yarn build
|
||||||
|
|||||||
@@ -38,13 +38,14 @@ jobs:
|
|||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
id: yarn-cache
|
id: yarn-cache
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/yarn
|
path: ${{ github.workspace }}/.yarn/cache
|
||||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-yarn-
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
- name: Install dependencies
|
- 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
|
- name: Validation
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -45,10 +45,11 @@ jobs:
|
|||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
id: yarn-cache
|
id: yarn-cache
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/yarn
|
path: ${{ github.workspace }}/.yarn/cache
|
||||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-yarn-
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
- name: Install dependencies
|
- 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
|
uses: actions/cache@v4
|
||||||
id: yarn-cache
|
id: yarn-cache
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/yarn
|
path: ${{ github.workspace }}/.yarn/cache
|
||||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-yarn-
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
- name: Install dependencies
|
- 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
|
- name: Type Check
|
||||||
run: yarn svelte-check --threshold warning
|
run: yarn svelte-check --threshold warning
|
||||||
|
|||||||
Reference in New Issue
Block a user