Browse Source

chore(buildtools): enable --frozen-lockfile yarn flag (#1005)

that is required for reproducible dependencies which is usually common on CI
Stanislav Shakirov 5 years ago
parent
commit
351adba284
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      .github/workflows/detox.yml

+ 1
- 1
.github/workflows/detox.yml View File

13
       - name: Setup - Install Yarn
13
       - name: Setup - Install Yarn
14
         run: YARN_GPG=NO curl -o- -L https://yarnpkg.com/install.sh | bash
14
         run: YARN_GPG=NO curl -o- -L https://yarnpkg.com/install.sh | bash
15
       - name: Setup - Install NPM Dependencies
15
       - name: Setup - Install NPM Dependencies
16
-        run: yarn
16
+        run: yarn --frozen-lockfile
17
       - name: Setup - Install CocoaPods CLI
17
       - name: Setup - Install CocoaPods CLI
18
         run: sudo gem install cocoapods -v 1.8.4
18
         run: sudo gem install cocoapods -v 1.8.4
19
       - name: Run tests
19
       - name: Run tests