Skip to content

Commit

Permalink
add all plateforms
Browse files Browse the repository at this point in the history
  • Loading branch information
atomrc committed Feb 29, 2024
1 parent 8eb53c8 commit 3c17390
Showing 1 changed file with 40 additions and 2 deletions.
42 changes: 40 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:
cancel-in-progress: true

jobs:
build:
build-linux:
runs-on: ubuntu-latest

steps:
Expand All @@ -26,5 +26,43 @@ jobs:
- name: Install JS dependencies
run: yarn --immutable

- name: Lint
- name: build
run: yarn build:linux

build-windows:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
cache: 'yarn'

- name: Install JS dependencies
run: yarn --immutable

- name: build
run: echo "TODO"

build-macos:
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
cache: 'yarn'

- name: Install JS dependencies
run: yarn --immutable

- name: build
run: echo "TODO"

0 comments on commit 3c17390

Please sign in to comment.