Alternative linter fix #1528
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: | |
# Also allow running this workflow manually from the Actions tab. | |
workflow_dispatch: | |
jobs: | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out reactor-ts repository | |
uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Run the type checker and then run the tests | |
run: | | |
npm install | |
npm run build | |
npm run test | |
lingua-franca: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out reactor-ts repository | |
uses: actions/checkout@v3 | |
with: | |
path: "reactor-ts" | |
fetch-depth: 0 | |
- name: Read lingua-franca-ref.txt | |
run: echo "lingua-franca-ref=$(cat ./reactor-ts/lingua-franca-ref.txt)" >> $GITHUB_ENV | |
- name: Check out lingua-franca repository | |
uses: actions/checkout@v3 | |
with: | |
repository: lf-lang/lingua-franca | |
ref: ${{ env.lingua-franca-ref }} | |
fetch-depth: 0 | |
path: "lingua-franca" | |
submodules: true | |
- name: Move Lingua Franca to default pwd | |
run: | | |
shopt -s dotglob | |
mv -- ./lingua-franca/* ${{ github.workspace }} | |
shopt -u dotglob | |
- name: Prepare build environment | |
uses: ./.github/actions/prepare-build-env | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
cache-dependency-path: 'reactor-ts/package-lock.json' | |
- name: Build reactor-ts | |
run: | | |
cd ./reactor-ts | |
npm install | |
npm run build | |
- name: Install pnpm | |
run: npm i -g pnpm | |
- name: Install RTI | |
uses: ./.github/actions/install-rti | |
if: ${{ runner.os == 'macOS' || runner.os == 'Linux' }} | |
- name: Perform Lingua Franca TypeScript tests | |
run: | | |
./gradlew targetTest -Ptarget=TypeScript -Druntime="git://github.com/lf-lang/reactor-ts.git#${{ github.ref }}" | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out reactor-ts repository | |
uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Run eslint | |
run: | | |
npm install | |
npm run lint | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out reactor-ts repository | |
uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Run prettier | |
run: | | |
npm install | |
npm run check-style | |