Skip to content

resolving issue with ios manifest #5505

resolving issue with ios manifest

resolving issue with ios manifest #5505

Workflow file for this run

name: Push checks
on: [push]
jobs:
Checkout:
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- name: Setup Node.js environment
uses: actions/[email protected]
with:
cache: yarn
cache-dependency-path: yarn.lock
node-version: 20
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Installing dependencies
run: yarn install --frozen-lockfile
- name: Lint Biome
run: yarn biome ci .
- name: Tests
run: yarn test