Update GHA workflows

This commit is contained in:
tree 2022-10-05 17:14:15 +02:00
rodič 5e0333d5a3
revize f7743cac40
2 změnil soubory, kde provedl 6 přidání a 6 odebrání

Zobrazit soubor

@ -16,12 +16,12 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
cache: npm
- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm ci
- name: Build website
run: yarn build
run: npm run build
# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus

Zobrazit soubor

@ -16,9 +16,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
cache: npm
- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm ci
- name: Test build website
run: yarn build
run: npm run build