Skip to content

Commit

Permalink
switch to Stencil 4, Typescript 4, pnpm ...
Browse files Browse the repository at this point in the history
  • Loading branch information
derkoe committed Feb 29, 2024
1 parent 8454d1b commit 35e5995
Show file tree
Hide file tree
Showing 7 changed files with 1,881 additions and 4,033 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": ["plugin:@stencil/recommended"],
"extends": ["plugin:@stencil-community/recommended"],
"rules": {
"@stencil/required-jsdoc": 0
"@stencil-community/required-jsdoc": 0,
"react/jsx-no-bind": 0
}
}
8 changes: 5 additions & 3 deletions .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 14.x
node-version: 20.x

- uses: pnpm/action-setup@v3

- name: Build
run: |
npm ci
npm run build
pnpm install
pnpm build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/lint-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 14.x
node-version: 20.x

- uses: pnpm/action-setup@v3

- name: Lint and Build
run: |
npm ci
npm run lint
npm run build
pnpm install
pnpm lint
pnpm build
Loading

0 comments on commit 35e5995

Please sign in to comment.