Skip to content

Commit

Permalink
Setup CI
Browse files Browse the repository at this point in the history
  • Loading branch information
konsumlamm committed Dec 22, 2023
1 parent adbc0c4 commit c8225d2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
- push
- pull_request

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
target
liberica/node_modules
key: ${{ runner.os }}-mister-x
- name: Build robusta
run: |
cd robusta
cargo build
- name: Build liberica
run: |
cd liberica
npm install
npm run build

0 comments on commit c8225d2

Please sign in to comment.