From 7cb212a40f0eeef7494553cf2e1ae292c0c32f35 Mon Sep 17 00:00:00 2001 From: Harsh Zalavadiya Date: Sun, 17 Jan 2021 15:13:34 +0000 Subject: [PATCH] ci: :construction_worker: cleaned up CI title --- .github/workflows/main.yml | 4 +++- .github/workflows/release.yml | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a324dea..3a66877 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,8 +1,10 @@ name: CI + on: [push] + jobs: build: - name: Build, lint on Node ${{ matrix.node }} and ${{ matrix.os }} + name: Node ${{ matrix.node }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f14afa5..e483aa1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,11 @@ jobs: - name: Checkout repo uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - name: Setup node + uses: actions/setup-node@v2 + with: + node-version: 14.x + registry-url: https://registry.npmjs.org - name: Install deps and build (with cache) uses: bahmutov/npm-install@v1