Stanislav Shakirov 351adba284 chore(buildtools): enable --frozen-lockfile yarn flag (#1005)
that is required for reproducible dependencies which is usually common on CI
2019-11-13 10:58:27 +01:00

21 lines
567 B
YAML

name: 'Detox CI Tests'
on: [push]
jobs:
tests:
name: 'Running tests'
runs-on: 'macOS-latest'
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 12.6
- 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: Setup - Install CocoaPods CLI
run: sudo gem install cocoapods -v 1.8.4
- name: Run tests
run: yarn ci