Expo push notification entitlement #51
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: ESLint | |
on: pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
# Disable eslint annotations, which are already appended by the build action | |
- run: | | |
echo "::remove-matcher owner=eslint-compact::" | |
echo "::remove-matcher owner=eslint-stylish::" | |
- name: Install dependencies | |
run: yarn | |
# TODO: Replace this with a github action that parses the output of eslint | |
# and annotates the files: this step doesn't have all annotations working | |
# Or, wait for github to fix it. | |
- name: Lint | |
run: yarn lint:fail-on-warnings |