From 40f7c8a59ef0910da5259c258ac3394f0ad1797e Mon Sep 17 00:00:00 2001 From: Rickard Natt och Dag Date: Tue, 30 Mar 2021 20:28:55 +0200 Subject: [PATCH] chore(ci): setup timezone --- .github/workflows/release.yml | 4 ++++ .github/workflows/test.yml | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cd0749df..912613af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,10 @@ jobs: uses: actions/setup-node@v1 with: node-version: 14 + - name: Setup timezone + uses: zcong1993/setup-timezone@master + with: + timezone: Europe/Stockholm - name: Install dependencies run: yarn install --immutable --silent --non-interactive 2> >(grep -v warning 1>&2) - name: Audit diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 00665f42..2a279d1e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,13 @@ jobs: uses: actions/setup-node@v2.1.2 with: node-version: 14.x + + - name: Setup timezone + uses: zcong1993/setup-timezone@master + with: + timezone: Europe/Stockholm + - run: yarn install --immutable --silent --non-interactive 2> >(grep -v warning 1>&2) - run: yarn audit - run: yarn lint - - run: yarn test \ No newline at end of file + - run: yarn test