feat(web): add web implementation for takePhoto and chooseFromGallery #61
Workflow file for this run
This file contains hidden or 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: "Continuous Integrations" | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| push: | |
| branches: | |
| - main | |
| - next | |
| - development | |
| - '*.x' | |
| jobs: | |
| setup: | |
| uses: ./.github/workflows/reusable_setup.yml | |
| lint: | |
| needs: 'setup' | |
| uses: ./.github/workflows/reusable_lint.yml | |
| build: | |
| needs: 'setup' | |
| uses: ./.github/workflows/reusable_build.yml | |
| verify-plugin-android: | |
| needs: ['setup', 'lint', 'build'] | |
| runs-on: 'macos-15' | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: 'Setup Tools' | |
| uses: ./.github/actions/setup-tools | |
| - name: 'Verify Android' | |
| run: npm run verify:android | |
| verify-plugin-ios: | |
| needs: ['setup', 'lint', 'build'] | |
| runs-on: 'macos-15' | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: 'Setup Tools' | |
| uses: ./.github/actions/setup-tools | |
| - name: 'Verify iOS' | |
| run: npm run verify:ios |