Fix text selection on Web doesn't work when passing markdownStyle without useMemo #1084
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: Lint JavaScript | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-npm- | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- name: Install node_modules | |
run: npm ci | |
- name: Verify there's no Prettier diff | |
run: | | |
npm run lint -- --fix --quiet | |
if ! git diff --name-only --exit-code; then | |
# shellcheck disable=SC2016 | |
echo 'Error: Prettier diff detected! Please run `npm run lint -- --fix` and commit the changes.' | |
exit 1 | |
fi |