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