Bump next from 12.1.0 to 14.2.15 #296
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Linting | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Run yarn lint:eslint | |
if: ${{ success() || failure() }} | |
run: | | |
if ! yarn lint:eslint; then | |
echo '' | |
echo '' | |
echo 'ℹ️ ℹ️ ℹ️' | |
echo 'Try running `yarn fix:eslint` locally to apply autofixes.' | |
echo 'ℹ️ ℹ️ ℹ️' | |
exit 1 | |
fi | |
- name: Run yarn lint:markdownlint | |
if: ${{ success() || failure() }} | |
run: | | |
if ! yarn lint:markdownlint; then | |
echo '' | |
echo '' | |
echo 'ℹ️ ℹ️ ℹ️' | |
echo 'Try running `yarn fix:markdownlint` locally to apply autofixes.' | |
echo 'ℹ️ ℹ️ ℹ️' | |
exit 1 | |
fi | |
- name: Run yarn lint:prettier | |
if: ${{ success() || failure() }} | |
run: | | |
if ! yarn lint:prettier; then | |
echo '' | |
echo '' | |
echo 'ℹ️ ℹ️ ℹ️' | |
echo 'Try running `yarn fix:prettier` locally to apply autofixes.' | |
echo 'ℹ️ ℹ️ ℹ️' | |
exit 1 | |
fi | |
- name: Run yarn lint:tsc | |
if: ${{ success() || failure() }} | |
run: | | |
if ! yarn lint:tsc; then | |
echo '' | |
echo '' | |
echo 'ℹ️ ℹ️ ℹ️' | |
echo 'Please fix the above errors locally for the check to pass.' | |
echo 'If you don’t see them, try merging target branch into yours.' | |
echo 'ℹ️ ℹ️ ℹ️' | |
exit 1 | |
fi | |
- name: Run yarn lint:yarn-dedupe | |
if: ${{ success() || failure() }} | |
run: | | |
if ! yarn lint:yarn-dedupe; then | |
echo '' | |
echo '' | |
echo 'ℹ️ ℹ️ ℹ️' | |
echo 'Some dependencies can be deduplicated, which will make yarn.lock' | |
echo 'lighter and potentially save us from unexplainable bugs.' | |
echo 'Please run `yarn fix:yarn-dedupe` locally and commit yarn.lock.' | |
echo 'ℹ️ ℹ️ ℹ️' | |
exit 1 | |
fi |