Carts Test Build #4
This file contains hidden or 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: Carts Test Build | |
| on: | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install WASI SDK | |
| uses: konsumer/install-wasi-sdk@v1 | |
| with: | |
| version: '25' | |
| - name: Install Nelua | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential git gcc gdb | |
| git clone https://github.com/edubart/nelua-lang.git | |
| cd nelua-lang | |
| make | |
| sudo make install | |
| - name: Build Carts | |
| run: npm run build:carts |