From f7f7f09f84175a80b582f74595e4da0403468275 Mon Sep 17 00:00:00 2001 From: Jan Philip <33464395+jpwahle@users.noreply.github.com> Date: Wed, 13 Jul 2022 15:40:19 +0200 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index df5de27..b6a71a3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,13 +8,18 @@ jobs: Test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - name: 🏁 Checkout + uses: actions/checkout@v2 + + - name: ✅ Setup node + uses: actions/setup-node@v2 with: node-version: '17' - - name: Install dependencies + + - name: 📦 Install dependencies run: | npm install - - name: Run linting + + - name: 📘 Run linting run: | - npm run lint \ No newline at end of file + npm run lint