Skip to content

Commit

Permalink
Fix Github Action Dependency Error (hyperbrew#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
adi-panda authored May 27, 2023
1 parent 963d6a3 commit e95d9d1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,23 @@ on:
tags:
- "*.*.*"

permissions:
contents: write

jobs:
build:
runs-on: windows-latest

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm i --legacy-peer-deps
- run: npm run zxp

- name: GitHub Release
Expand Down

0 comments on commit e95d9d1

Please sign in to comment.