prettierx: Update flow-parser -> 0.257.1 - devDependency #818
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: | |
- 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 | |
- "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/[email protected] | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
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 pnpm@5 | |
- name: Run Tests | |
run: yarn test:dev-package --maxWorkers=2 |