From a26fee04548c50e0ac829bd7f644dc09e0371dbf Mon Sep 17 00:00:00 2001 From: Kevin Meinhardt Date: Fri, 19 Jan 2024 13:16:51 +0100 Subject: [PATCH] tmp: install node modules first --- .github/workflows/localization.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/localization.yml b/.github/workflows/localization.yml index e388b7457b5..f0ed1a8681d 100644 --- a/.github/workflows/localization.yml +++ b/.github/workflows/localization.yml @@ -7,8 +7,9 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 + - name: Install node_modules + run: yarn install --frozen-lockfile with: node-version: 18 cache: 'yarn' - - run: yarn --version - run: yarn lint