Skip to content

Commit

Permalink
Setup CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rossberg committed Mar 20, 2023
1 parent b6dd1fb commit 38a85e0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout V8
run: make v8-checkout
- name: Build V8
run: make v8
- name: Build Wasm
run: make wasm
- name: Run tests
run: make all

0 comments on commit 38a85e0

Please sign in to comment.