Skip to content

Fencing: fix double-touch race conditions #389

Fencing: fix double-touch race conditions

Fencing: fix double-touch race conditions #389

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Verify Prettier
on:
pull_request:
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn --immutable --inline-builds
- name: Run Prettier and fail if there are any discrepancies
run: yarn prettier --check '**/*.{js,jsx,ts,tsx}'