Skip to content

chore: pin external GitHub Actions to commit SHAs #50

chore: pin external GitHub Actions to commit SHAs

chore: pin external GitHub Actions to commit SHAs #50

Workflow file for this run

name: 'Detox CI Tests'
on: [pull_request]
jobs:
tests:
name: 'Running tests'
runs-on: 'macOS-latest'
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Set up Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 20
cache: 'yarn'
- name: Setup - Install Yarn
run: YARN_GPG=NO curl -o- -L https://yarnpkg.com/install.sh | bash
- name: Setup - Install NPM Dependencies
run: yarn --frozen-lockfile
- name: Run tests
run: yarn ci