From 935b8c3d0c2b20a07107bad714c9707e5af3d845 Mon Sep 17 00:00:00 2001 From: eric-burel Date: Tue, 23 Feb 2021 19:19:51 +0100 Subject: [PATCH] make yarn install optional --- .github/workflows/test_unit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_unit.yml b/.github/workflows/test_unit.yml index b83eb085..237822ed 100644 --- a/.github/workflows/test_unit.yml +++ b/.github/workflows/test_unit.yml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2.1.5 - - run: npm i -g yarn # Not necessary on Github but useful to test locally with `act` + - run: npm i -g yarn || true # Not necessary on Github but useful to test locally with `act` - run: yarn install --frozen-lockfile --check-files # This workflow contains a single job called "build"