Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release Docs

on:
release:
types: [published, updated]
types: [ published, updated ]


permissions:
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'

- name: Install dependencies by lockfile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-package-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'

- name: Install dependencies by lockfile
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
uses: actions/setup-node@v4
with:
always-auth: true
node-version: 18
node-version: 20

- name: 'Authorize to NPM Registry'
run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_DEPLOY_TOKEN}}" >> dist/.npmrc
Expand All @@ -81,6 +81,6 @@ jobs:
env:
GIT_COMMIT_HASH: ${{github.sha}}
IS_DEV_PUBLISH: true

- name: Publish
run: cd dist && npm publish --access public --tag dev
6 changes: 3 additions & 3 deletions .github/workflows/release-package-next.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'

- name: Install dependencies by lockfile
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
uses: actions/setup-node@v4
with:
always-auth: true
node-version: 18
node-version: 20

- name: 'Authorize to NPM Registry'
run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_DEPLOY_TOKEN}}" >> dist/.npmrc
Expand All @@ -83,6 +83,6 @@ jobs:
npm run build:prepublish
env:
GIT_COMMIT_HASH: ${{github.sha}}

- name: Publish
run: cd dist && npm publish --access public --tag next
8 changes: 4 additions & 4 deletions .github/workflows/release-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release Package

on:
release:
types: [published]
types: [ published ]

jobs:
install_dependencies:
Expand All @@ -13,7 +13,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'

- name: Install dependencies by lockfile
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
uses: actions/setup-node@v4
with:
always-auth: true
node-version: 18
node-version: 20

- name: 'Authorize to NPM Registry'
run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_DEPLOY_TOKEN}}" >> dist/.npmrc
Expand All @@ -82,6 +82,6 @@ jobs:

- name: Do prepublish
run: npm run build:prepublish

- name: Publish
run: cd dist && npm publish --access public
10 changes: 5 additions & 5 deletions .github/workflows/run-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'

- name: Install dependencies by lockfile
Expand All @@ -42,7 +42,7 @@ jobs:
with:
key: "workspace:${{github.sha}}"
path: ./

- name: Build static files
run: npm run build

Expand All @@ -56,7 +56,7 @@ jobs:
with:
key: "workspace:${{github.sha}}"
path: ./

- name: Lint sources
run: npm run lint

Expand All @@ -70,7 +70,7 @@ jobs:
with:
key: "workspace:${{github.sha}}"
path: ./

- name: Check spelling in sources
run: npm run cspell:check

Expand All @@ -84,6 +84,6 @@ jobs:
with:
key: "workspace:${{github.sha}}"
path: ./

- name: Check codestyle
run: npm run prettier:check
Loading