Skip to content

Build(deps): Bump actions/checkout from 2.3.4 to 3.5.3 #36

Build(deps): Bump actions/checkout from 2.3.4 to 3.5.3

Build(deps): Bump actions/checkout from 2.3.4 to 3.5.3 #36

name: Dev_Package_Test
on:
schedule:
- cron: "0 0 * * 1"
pull_request:
paths:
- "package.json"
- ".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
- "10"
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.5.3
- name: Setup Node.js
uses: actions/setup-node@v2.1.2
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Install Client Package
if: matrix.NPM_CLIENT == 'pnpm'
run: npm install --global ${{ matrix.NPM_CLIENT }}
- name: Run Tests
run: yarn test:dev-package --maxWorkers=2