update workflows
This commit is contained in:
parent
f0a804cee4
commit
a5735af4c1
|
@ -19,8 +19,10 @@ jobs:
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
cache: "yarn"
|
||||||
- name: Install, build, test
|
- name: Install, build, test
|
||||||
run: |
|
run: |
|
||||||
yarn install-r
|
yarn install-r
|
||||||
yarn build-library
|
yarn build-library
|
||||||
|
yarn build-website
|
||||||
yarn test --silent
|
yarn test --silent
|
||||||
|
|
|
@ -13,13 +13,14 @@ jobs:
|
||||||
LINGDOCS_DICTIONARY_URL: ${{ secrets.LINGDOCS_DICTIONARY_URL }}
|
LINGDOCS_DICTIONARY_URL: ${{ secrets.LINGDOCS_DICTIONARY_URL }}
|
||||||
LINGDOCS_NPM_TOKEN: ${{ secrets.LINGDOCS_NPM_TOKEN }}
|
LINGDOCS_NPM_TOKEN: ${{ secrets.LINGDOCS_NPM_TOKEN }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 20
|
||||||
|
cache: "yarn"
|
||||||
- name: Check if version has been updated
|
- name: Check if version has been updated
|
||||||
id: check
|
id: check
|
||||||
uses: EndBug/version-check@v1
|
uses: EndBug/version-check@v2
|
||||||
with:
|
with:
|
||||||
diff-search: true
|
diff-search: true
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
Loading…
Reference in New Issue