Dev_Package_Test #367
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: Dev_Package_Test | |
on: | |
schedule: | |
# “At 00:00 on Sunday.” https://crontab.guru/#0%C2%A00%C2%A0*%C2%A0*%C2%A00 | |
- cron: "0 0 * * 0" | |
pull_request: | |
paths: | |
- "package.json" | |
- "yarn.lock" | |
# This workflow file | |
- ".github/workflows/dev-package-test.yml" | |
jobs: | |
test: | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu-latest" | |
node: | |
# Run tests on minimal version we support | |
- "12" | |
NPM_CLIENT: | |
- "yarn" | |
- "npm" | |
- "pnpm" | |
env: | |
INSTALL_PACKAGE: true | |
NPM_CLIENT: ${{ matrix.NPM_CLIENT }} | |
name: Test with ${{ matrix.NPM_CLIENT }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "yarn" | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Install Client Package | |
if: ${{ matrix.NPM_CLIENT == 'pnpm' }} | |
run: npm install --global pnpm | |
- name: Run Tests | |
run: yarn test:dev-package --maxWorkers=2 |