Skip to content

Commit

Permalink
chore: fix ci web
Browse files Browse the repository at this point in the history
  • Loading branch information
juanpicado committed Apr 9, 2021
1 parent 0e18842 commit d0bd580
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ 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 }}

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
Expand Down

0 comments on commit d0bd580

Please sign in to comment.