Merge pull request #1302 from thewtex/ubuntu-22-04-deps #1229
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: WASI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
OCI_EXE: docker | |
jobs: | |
build-test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- name: Install | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: true | |
- name: Build | |
run: | | |
pnpm run --aggregate-output build:wasi | |
- name: Test | |
run: | | |
pnpm run --aggregate-output test:wasi |