Skip to content

Some spring cleaning, removing things from Alan 0.1 that won't come back, at least in anything resembling the old version #212

Some spring cleaning, removing things from Alan 0.1 that won't come back, at least in anything resembling the old version

Some spring cleaning, removing things from Alan 0.1 that won't come back, at least in anything resembling the old version #212

Workflow file for this run

name: JS STDLIB
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test-js-stdlib:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install deps
run: yarn
- name: Run tests
run: npm test
test-js-gpgpu:
runs-on: [self-hosted, macOS]
steps:
- uses: actions/checkout@v4
- name: Install deps
run: yarn
- name: Bundle stdlib
run: yarn bundle
- name: Set up Playwright
run: yarn playwright install
- name: Start webserver
run: yarn start-server
- name: Test GPGPU
run: yarn test-gpgpu
- name: Stop webserver
if: always()
run: yarn stop-server