[Bug]: ViewAnnotationManager.swift throws error when running or building on iOS ^18 and expo ^51 #939
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: CheckCodeExampleInIssue | |
on: | |
issues: | |
types: [opened, edited] | |
jobs: | |
check-issue-example-code: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: run lint-code-example-in-issues.js | |
run: | | |
npm install | |
node lint-code-example-in-issues.js | |
working-directory: ./scripts/actions/lint-code-example-in-issues | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |