chore: enable nx cloud cache #8675
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
NODE_VERSION: 18.2 | |
PNPM_VERSION: 8 | |
HOME: /root | |
jobs: | |
pr: | |
name: 👷 Build / Lint / Test | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.41.2-jammy | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Mark repository as safe | |
run: git config --global --add safe.directory /__w/descope-js/descope-js | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'pnpm' | |
# - name: Restore cached npm dependencies | |
# uses: actions/cache/restore@v4 | |
# with: | |
# path: | | |
# node_modules | |
# key: npm-dependencies-${{ hashFiles('pnpm-lock.yaml') }} | |
- name: Fetch all branches to container | |
run: git fetch --all | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --ignore-scripts | |
env: | |
CI: true | |
NODE_AUTH_TOKEN: ${{ secrets.CI_NPM_READ_ORG }} | |
- name: Install jq | |
run: apt-get update && apt-get install -y jq | |
- name: Set permission | |
run: chmod 755 /usr/local/bin | |
# - name: Set NX cloud shas | |
# uses: nrwl/nx-set-shas@v4 | |
# - name: Install Playwright Browsers | |
# run: npx playwright install --with-deps | |
# - name: Cache npm dependencies | |
# uses: actions/cache/save@v4 | |
# with: | |
# path: | | |
# node_modules | |
# key: npm-dependencies-${{ hashFiles('pnpm-lock.yaml') }} | |
- name: Gitleaks | |
run: npm run leaks | |
shell: bash | |
- name: Build | |
run: pnpm run build | |
- name: Lint | |
run: pnpm run lint | |
- name: Test | |
run: pnpm run test | |
- name: E2E | |
run: pnpm run test:e2e | |
- name: Upload HTML report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: e2e-report | |
path: packages/**/playwright-report |