Add suffix to Javy and plugin-api versions (#824) #927
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: WPT CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
wpt: | |
name: wpt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: ./.github/actions/ci-shared-setup | |
with: | |
os: linux | |
- name: WPT | |
run: | | |
cargo build --package=javy-plugin --release --target=wasm32-wasip1 --features=experimental_event_loop | |
CARGO_PROFILE_RELEASE_LTO=off cargo build --package=javy-cli --release | |
npm install --prefix wpt | |
npm test --prefix wpt |