Skip to content

fix(ios): preserve packager source map before compose overwrites it #14

fix(ios): preserve packager source map before compose overwrites it

fix(ios): preserve packager source map before compose overwrites it #14

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
# Least privilege: CI only reads the repository contents.
permissions:
contents: read
# Cancel superseded runs when a PR is updated, to save CI minutes.
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# Required status check for merging into main (org-wide branch protection
# matches on the job name "check").
check:
name: check
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 20.19.0
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
lint:
name: lint
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 20.19.0
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint