feat(ios): add barcodeTypes and regionOfInterest options to the iOS i… #22
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: main | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ["lts/-1", "lts/*"] | |
name: Test on node@v${{ matrix.node }} | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Setup bun 🔧 | |
uses: oven-sh/setup-bun@v1 | |
- name: Setup node 🔧 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
check-latest: true | |
- name: Install 🪄 | |
run: bun install --frozen-lockfile | |
- name: Lint 🔍 | |
run: bun run lint | |
- name: Prettier 🔍 | |
run: bun run prettycheck | |
- name: TypeScript 🔍 | |
run: bun run typecheck | |
- name: Vitest 🔍 | |
run: bun run spec | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ["lts/-1", "lts/*"] | |
name: Build on node@v${{ matrix.node }} | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Setup bun 🔧 | |
uses: oven-sh/setup-bun@v1 | |
- name: Setup node 🔧 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
check-latest: true | |
- name: Install 🪄 | |
run: bun install --frozen-lockfile | |
- name: Build 💎 | |
run: bun run build |