Skip to content

Commit

Permalink
♾️ CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yvvki committed Dec 16, 2023
1 parent 2e2f7b4 commit 560cfe0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on:
push:
pull_request:

jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]

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

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts'
check-latest: true
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn tauri build

0 comments on commit 560cfe0

Please sign in to comment.