Skip to content

Commit f8ea3f0

Browse files
authored
Merge pull request #706 from umbraco/feature/no-implicit-lit
Add range with support for Lit 2 and Lit 3
2 parents c6b4b2e + 1f11427 commit f8ea3f0

File tree

91 files changed

+306
-388
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+306
-388
lines changed

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
node-version: 20
5555
cache: 'npm'
5656
- name: Install dependencies
57-
run: npm ci
57+
run: npm install
5858
- name: Publish to Chromatic
5959
uses: chromaui/action@v10
6060
continue-on-error: true

.github/workflows/publish.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,22 @@ jobs:
3232
# pulls all commits (needed for lerna / semantic release to correctly version)
3333
fetch-depth: '0'
3434

35+
- name: Cache build setup
36+
uses: actions/cache@v3
37+
with:
38+
path: node_modules/.cache
39+
key: ${{ runner.os }}-cache-${{ github.sha }}
40+
restore-keys: |
41+
${{ runner.os }}-cache-
42+
3543
- name: Use Node.js 20
3644
uses: actions/setup-node@v4
3745
with:
3846
node-version: 20
3947
cache: 'npm'
4048

4149
- run: npm -v
42-
- run: npm ci
50+
- run: npm install
4351

4452
- name: Authenticate with Registry
4553
run: |

.github/workflows/tests.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
cache: 'npm'
32-
- run: npm ci
32+
- run: npm install
3333
- run: npm run lint
3434
- run: sudo npx playwright install-deps
3535
- run: npm run test
@@ -43,10 +43,17 @@ jobs:
4343

4444
steps:
4545
- uses: actions/checkout@v4
46+
- name: Cache build setup
47+
uses: actions/cache@v3
48+
with:
49+
path: node_modules/.cache
50+
key: ${{ runner.os }}-cache-${{ github.sha }}
51+
restore-keys: |
52+
${{ runner.os }}-cache-
4653
- name: Use Node.js ${{ matrix.node-version }}
4754
uses: actions/setup-node@v4
4855
with:
4956
node-version: ${{ matrix.node-version }}
5057
cache: 'npm'
51-
- run: npm ci
58+
- run: npm install
5259
- run: npm run build:prod

0 commit comments

Comments
 (0)