fix(deps): update dependency react-native-maps to v1.15.4 #1885
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: 'π Quality assurance' | |
on: | |
push: | |
jobs: | |
quality-assurance: | |
strategy: | |
matrix: | |
package: | |
[ | |
'apps/app', | |
'apps/api', | |
'apps/blog', | |
'packages/twrnc', | |
'packages/utils', | |
'packages/tailwind-config', | |
'packages/expo-config', | |
'packages/next-config', | |
] | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: βοΈ Checkout | |
uses: actions/checkout@v3 | |
- name: βοΈ Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x.x | |
- name: βοΈ Setup Yarn | |
uses: actions/cache@v3.3.2 | |
with: | |
path: node_modules | |
key: yarn-cache-${{ hashFiles('**/yarn.lock', '.yarnrc.yml') }} | |
restore-keys: yarn-cache- | |
- name: βοΈ Install deps | |
run: yarn install --immutable | |
- name: π¦ Check deps | |
run: yarn deps:check | |
- name: βοΈ Check static types | |
run: yarn typecheck | |
working-directory: ${{ matrix.package }} | |
- name: π― Check test coverage | |
with: | |
package-manager: yarn | |
test-script: yarn test | |
working-directory: ${{ matrix.package }} | |
uses: ArtiomTr/jest-coverage-report-action@v2 | |
- name: π Check linting | |
run: yarn lint | |
working-directory: ${{ matrix.package }} |