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: 1 addition & 3 deletions .github/workflows/broken-links-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
node-version-file: '.nvmrc'
- name: Enable Corepack
run: corepack enable
- name: Security check (npq)
run: npx [email protected] install --pkgMgr yarn --dry-run
- name: Install dependencies
run: yarn install --immutable
run: NPQ_PKG_MGR=yarn npx npq install --immutable
- run: yarn remark -r .remarkrc.nightly.mjs .
4 changes: 1 addition & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ jobs:
node-version-file: '.nvmrc'
- name: Enable Corepack
run: corepack enable
- name: Security check (npq)
run: npx [email protected] install --pkgMgr yarn --dry-run
- name: Install dependencies
run: yarn install --immutable
run: NPQ_PKG_MGR=yarn npx npq install --immutable
- run: yarn docs:lint
10 changes: 4 additions & 6 deletions .github/workflows/rapid-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ jobs:
node-version-file: '.nvmrc'
- name: Enable Corepack
run: corepack enable
- name: Security check (npq)
run: npx [email protected] install --pkgMgr yarn --dry-run
- name: Install dependencies
run: yarn install --immutable
run: npx npq install --immutable
env:
NPQ_PKG_MGR: yarn
DETOX_DISABLE_POD_INSTALL: true
DETOX_DISABLE_POSTINSTALL: true
- name: Lint source project
Expand Down Expand Up @@ -69,11 +68,10 @@ jobs:
node-version-file: '.nvmrc'
- name: Enable Corepack
run: corepack enable
- name: Security check (npq)
run: npx [email protected] install --pkgMgr yarn --dry-run
- name: Install dependencies
run: yarn install --immutable
run: npx npq install --immutable
env:
NPQ_PKG_MGR: yarn
DETOX_DISABLE_POD_INSTALL: true
DETOX_DISABLE_POSTINSTALL: true
- name: Unit tests
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/surge-purge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ jobs:
node-version-file: '.nvmrc'
- name: Enable Corepack
run: corepack enable
- name: Security check (npq)
run: npx [email protected] install --pkgMgr yarn --dry-run
- name: Install dependencies
run: yarn install --immutable
run: NPQ_PKG_MGR=yarn npx npq install --immutable
- name: Teardown old domains
run: yarn zx scripts/purge_expired_domains.mjs --olderThan ${{ github.event.inputs.days || '10' }}
env:
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,10 @@ jobs:
filters: |
website:
- 'website/**'
- name: Security check (npq)
working-directory: ./website
run: npx [email protected] install --pkgMgr yarn --dry-run
- name: Install and build
working-directory: ./website
run: |
yarn install
NPQ_PKG_MGR=yarn npx npq install
yarn build
gh-release:
if: github.event_name != 'pull_request'
Expand All @@ -54,9 +51,6 @@ jobs:
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }}
- name: Security check (npq)
working-directory: ./website
run: npx [email protected] install --pkgMgr yarn --dry-run
- name: Release to GitHub Pages
env:
USE_SSH: true
Expand All @@ -65,7 +59,7 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "mobilewix"
cd website/
yarn install
NPQ_PKG_MGR=yarn npx npq install
yarn build
yarn docusaurus deploy
performance:
Expand Down