Skip to content

ci: Re-link Cocoapods after cache restore #25

ci: Re-link Cocoapods after cache restore

ci: Re-link Cocoapods after cache restore #25

Workflow file for this run

name: "Standard Checks"
on:
push:
branches: ["master", "ci"]
jobs:
check:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'yarn'
- name: Install Node dependencies
run: yarn install
- name: Check lint rules
run: yarn lint
- name: Run JavaScript Tests
run: yarn test