Skip to content

Add support for detecting iOS 26 #1428

Add support for detecting iOS 26

Add support for detecting iOS 26 #1428

Workflow file for this run

name: Lint JavaScript
on:
pull_request:
types: [opened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
# v5.0.0
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
- name: Remove version from package-lock.json
run: jq 'del(.version, .packages[""].version)' package-lock.json > normalized-package-lock.json
# v5.0.0
- uses: actions/setup-node@13427813f706a0f6c9b74603b31103c40ab1c35a
with:
node-version-file: '.nvmrc'
cache: npm
cache-dependency-path: normalized-package-lock.json
- run: npm ci
- run: npm run lint
env:
CI: true
- name: Verify there's no Prettier diff
run: |
npm run prettier -- --loglevel silent
if ! git diff --name-only --exit-code; then
# shellcheck disable=SC2016
echo 'Error: Prettier diff detected! Please run `npm run prettier` and commit the changes.'
exit 1
fi