Skip to content

prettierx: Update flow-parser -> 0.257.1 - devDependency #2288

prettierx: Update flow-parser -> 0.257.1 - devDependency

prettierx: Update flow-parser -> 0.257.1 - devDependency #2288

Workflow file for this run

name: Dev
on:
# [prettierx ...]
push:
branches:
# [prettierx ...]
- "@prettier-x/*"
- dev
- dev-*
- prettierx-*
pull_request:
jobs:
test:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
node:
- "16"
- "14"
- "12"
# [prettierx ...]
include:
# [prettierx] code coverage not enabled (...)
- os: "ubuntu-latest"
node: "16"
# [prettierx] NOT ENABLED:
# ENABLE_CODE_COVERAGE: true
FULL_TEST: true
CHECK_TEST_PARSERS: true
exclude:
- os: "macos-latest"
node: "14"
- os: "windows-latest"
node: "14"
env:
ENABLE_CODE_COVERAGE: ${{ matrix.ENABLE_CODE_COVERAGE }}
FULL_TEST: ${{ matrix.FULL_TEST }}
CHECK_TEST_PARSERS: ${{ matrix.CHECK_TEST_PARSERS }}
name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
# `codecov/codecov-action` require depth to be at least `2`, see #10219
with:
fetch-depth: 2
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Tests (macOS)
if: matrix.os == 'macos-latest'
run: yarn test --maxWorkers=4
- name: Run Tests (Linux and Windows)
if: matrix.os != 'macos-latest'
run: yarn test --maxWorkers=2
# [prettierx] code coverage not enabled (see above)
- name: Upload Coverage
uses: codecov/[email protected]
if: matrix.ENABLE_CODE_COVERAGE
with:
fail_ci_if_error: true
# #8073 test
- name: Run Tests (PRETTIER_FALLBACK_RESOLVE)
run: yarn test "tests/integration/__tests__/(config|plugin)"
env:
PRETTIER_FALLBACK_RESOLVE: true
# [prettierx] code coverage not enabled (see above)
- name: Upload Coverage (PRETTIER_FALLBACK_RESOLVE)
uses: codecov/[email protected]
if: matrix.ENABLE_CODE_COVERAGE
with:
fail_ci_if_error: true