Refactors the compiler in terms of targets. #357
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows to run this via the Actions tab | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Racket environment | |
uses: Bogdanp/setup-racket@v1.11 | |
with: | |
architecture: x64 | |
distribution: full | |
variant: CS | |
version: stable | |
- name: Setup ES6 target env. | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- name: Build the compiler CLI. | |
run: ./build.sh | |
- name: Run the test suite. | |
run: ./run-tests.sh |