Implemented selectorsSameLine #19
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- main | |
- patch-release | |
pull_request: | |
jobs: | |
test: | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu-latest" | |
- "macos-latest" | |
- "windows-latest" | |
node: | |
- "18" | |
- "16" | |
- "14" | |
include: | |
# only enable coverage on the fastest job | |
- os: "ubuntu-latest" | |
node: "18" | |
ENABLE_CODE_COVERAGE: true | |
FULL_TEST: true | |
CHECK_TEST_PARSERS: true | |
exclude: | |
- os: "macos-latest" | |
node: "16" | |
- os: "windows-latest" | |
node: "16" | |
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/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: 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 | |
- 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 | |
- name: Upload Coverage (PRETTIER_FALLBACK_RESOLVE) | |
uses: codecov/[email protected] | |
if: ${{ matrix.ENABLE_CODE_COVERAGE }} | |
with: | |
fail_ci_if_error: true |