Skip to content

feat: adding toggle to hide user emails on site/notebook pages #460

feat: adding toggle to hide user emails on site/notebook pages

feat: adding toggle to hide user emails on site/notebook pages #460

Workflow file for this run

name: PR App action
env:
CONTAINER: app
on:
pull_request:
paths:
- ".github/workflows/pr_app.yaml"
- "build/**"
- "code/yarn.lock"
- "code/workspaces/common/**"
- "code/workspaces/web-app/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-cache-${{ env.CONTAINER }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: npm-cache-${{ env.CONTAINER }}-
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Validate build
run: ./build/validate-build.sh ${{ env.CONTAINER }}
shell: bash