chore: enable nx cloud cache #8690
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 | |
options: --user root | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
fetch-depth: 0 | |
- 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: Mark repository as safe | |
run: git config --global --add safe.directory /__w/descope-js/descope-js | |
# - name: Fetch all branches to container | |
# run: git fetch --all | |
- name: Install jq | |
run: apt-get update && apt-get install -y jq | |
# - name: Set permission | |
# run: chmod -R 777 /usr/local | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --ignore-scripts | |
env: | |
CI: true | |
NODE_AUTH_TOKEN: ${{ secrets.CI_NPM_READ_ORG }} | |
# - 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 nx affected --target test:e2e | |
- name: Upload HTML report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: e2e-report | |
path: packages/**/playwright-report |