Merge pull request #1 from calcit-lang/calcit-9 #6
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: Upload | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- uses: calcit-lang/[email protected] | |
with: | |
version: '0.9.2' | |
bundler: true | |
- name: "run calcit" | |
run: bundle_calcit -1 && cr -1 | |
- name: "compiles to js" | |
run: > | |
caps --ci && cr -1 js | |
&& yarn | |
&& node main.mjs |