Add a github action to run tests #5
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: 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 GitHub Actions / Bean testsInvalid workflow file
|
||
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 |