From d0bd58049d28c5644a8171ecf718ab9bc8de9044 Mon Sep 17 00:00:00 2001 From: Juan Picado Date: Fri, 9 Apr 2021 20:51:30 +0200 Subject: [PATCH] chore: fix ci web --- .github/workflows/ci-website.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-website.yml b/.github/workflows/ci-website.yml index d9e874d53e74..f90caa029c0c 100644 --- a/.github/workflows/ci-website.yml +++ b/.github/workflows/ci-website.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - node-version: [14] + node_version: [14] name: ${{ matrix.os }} / Node ${{ matrix.node_version }} runs-on: ${{ matrix.os }} @@ -22,11 +22,11 @@ jobs: steps: - uses: actions/checkout@v1 - name: Use Node ${{ matrix.node_version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: - node_version: ${{ matrix.node_version }} + node-version: ${{ matrix.node_version }} - name: Install pnpm - run: npm i -g pnpm + run: sudo npm i -g pnpm - name: Install run: pnpm recursive install - name: Format