diff --git a/.github/workflows/bean-tests.yml b/.github/workflows/bean-tests.yml new file mode 100644 index 0000000..d1423a0 --- /dev/null +++ b/.github/workflows/bean-tests.yml @@ -0,0 +1,20 @@ +name: Bean tests +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + +jobs: + build: + runs-on: ubuntu-latest + node-version: [18.x] + 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