Skip to content

Add a github action to run tests #5

Add a github action to run tests

Add a github action to run tests #5

Workflow file for this run

name: Bean tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
node-version: [18.x]

Check failure on line 11 in .github/workflows/bean-tests.yml

View workflow run for this annotation

GitHub Actions / Bean tests

Invalid workflow file

The workflow is not valid. .github/workflows/bean-tests.yml (Line: 11, Col: 5): Unexpected value 'node-version' .github/workflows/bean-tests.yml (Line: 17, Col: 23): Unrecognized named-value: 'node-version'. Located at position 1 within expression: node-version
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ node-version }}
cache: 'npm'
- run: npm install
- run: npx shadow-cljs compile test && node tests.js