Skip to content

chore: version bump and min ios bump #3653

chore: version bump and min ios bump

chore: version bump and min ios bump #3653

Workflow file for this run

name: lint-check
on:
workflow_dispatch:
pull_request:
jobs:
eslint:
name: Run lint check
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Configure npm authentication
run: |
echo "" >> .yarnrc.yml
echo "npmScopes:" >> .yarnrc.yml
echo " synonymdev:" >> .yarnrc.yml
echo ' npmAuthToken: "${{ secrets.NPMJS_READ_RN_PUBKY }}"' >> .yarnrc.yml
- name: Install Node.js dependencies
run: yarn install
- name: Lint check
run: yarn lint:check