Skip to content

Commit

Permalink
fix2
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeny Metelkin committed Feb 23, 2024
1 parent 89eb24c commit 6d01d35
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,17 @@ on:

jobs:
build:
strategy:
matrix:
node-version: [16.x]
platform: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.platform }}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 16.x
- run: npm ci
- name: Build standalone apps
run: npm run pkg
upload:
runs-on: ubuntu-latest
steps:
- name: Save distributives as artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 6d01d35

Please sign in to comment.