diff options
author | dan <dan.abramov@gmail.com> | 2023-09-06 17:26:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-06 09:26:19 -0700 |
commit | 19adb10de1e9f1bc2719a1acbd004187ddee643c (patch) | |
tree | 90d3e12e05e4170dd3cfca7a82276c5b6209b303 /.github | |
parent | 565c1a0510b5fb516cc23db4f4e2ec903ad66730 (diff) | |
download | voidsky-19adb10de1e9f1bc2719a1acbd004187ddee643c.tar.zst |
Use frozen lockfile for CI workflows (#1394)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c5b9a324d..1d2a032c1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: - name: Check out Git repository uses: actions/checkout@v3 - name: Yarn install - run: yarn + run: yarn --frozen-lockfile - name: Lint check run: yarn lint - name: Type check @@ -33,7 +33,7 @@ jobs: - name: Check out Git repository uses: actions/checkout@v3 - name: Yarn install - run: yarn + run: yarn --frozen-lockfile - name: Run tests run: | yarn test --forceExit |