Skip to content

Commit

Permalink
Add GitHub Actions workflow for Izem Runtime CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AtilMohAmine committed Sep 12, 2024
1 parent 8917b55 commit ae8b6ba
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/nim-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Izem Runtime CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Nim
uses: iffy/install-nim@v5
with:
version: '2.0.0'

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.0-dev
- name: Install nim dependencies
run: make deps

- name: Build project
run: make

- name: Run basic test
run: |
echo 'console.log("Hello, World!");' > test.js
./izem test.js | grep "Hello, World!"

0 comments on commit ae8b6ba

Please sign in to comment.