--- name: Run tests on: workflow_dispatch: pull_request: branches-ignore: - 'l10n_master' - 'cf-pages' paths: - 'apps/**' - 'libs/**' - '*' - '!*.md' - '!*.txt' - '.github/workflows/test.yml' defaults: run: shell: bash jobs: test: name: Run tests runs-on: ubuntu-20.04 steps: - name: Checkout repo uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 - name: Set up Node uses: actions/setup-node@9ced9a43a244f3ac94f13bfd896db8c8f30da67a # v3.0.0 with: cache: 'npm' cache-dependency-path: '**/package-lock.json' node-version: '16' - name: Print environment run: | node --version npm --version - name: Install Node dependencies run: npm ci # We use isolatedModules: true which disables typechecking in tests # Tests in apps/ are typechecked when their app is built, so we just do it here for libs/ # See https://bitwarden.atlassian.net/browse/EC-497 - name: Run typechecking run: | for p in libs/**/tsconfig.spec.json; do echo "Typechecking $p" npx tsc --noEmit --project $p done - name: Run tests run: | npm run test