Skip to content

Commit

Permalink
Merge pull request #706 from umbraco/feature/no-implicit-lit
Browse files Browse the repository at this point in the history
Add range with support for Lit 2 and Lit 3
  • Loading branch information
iOvergaard authored Feb 6, 2024
2 parents c6b4b2e + 1f11427 commit f8ea3f0
Show file tree
Hide file tree
Showing 91 changed files with 306 additions and 388 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
run: npm install
- name: Publish to Chromatic
uses: chromaui/action@v10
continue-on-error: true
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,22 @@ jobs:
# pulls all commits (needed for lerna / semantic release to correctly version)
fetch-depth: '0'

- name: Cache build setup
uses: actions/cache@v3
with:
path: node_modules/.cache
key: ${{ runner.os }}-cache-${{ github.sha }}
restore-keys: |
${{ runner.os }}-cache-
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'

- run: npm -v
- run: npm ci
- run: npm install

- name: Authenticate with Registry
run: |
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm install
- run: npm run lint
- run: sudo npx playwright install-deps
- run: npm run test
Expand All @@ -43,10 +43,17 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Cache build setup
uses: actions/cache@v3
with:
path: node_modules/.cache
key: ${{ runner.os }}-cache-${{ github.sha }}
restore-keys: |
${{ runner.os }}-cache-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm install
- run: npm run build:prod
Loading

0 comments on commit f8ea3f0

Please sign in to comment.