From 20c3cc2631092dd5815c42cd845d8c45b06626ef Mon Sep 17 00:00:00 2001 From: Matej Jellus Date: Sun, 6 Mar 2022 17:26:08 +0100 Subject: [PATCH] Update main workflow --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 585a123..97e5d0c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,6 +21,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - uses: actions/setup-node@v2 + with: + node-version: 16 + cache: 'yarn' - name: Install dependencies run: yarn install - name: Run lint @@ -42,6 +46,10 @@ jobs: options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3 steps: - uses: actions/checkout@v1 + - uses: actions/setup-node@v2 + with: + node-version: 16 + cache: 'yarn' - name: Install dependencies run: yarn install - name: Verify MariaDB connection