[CI] update code #1187
Workflow file for this run
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: js | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
- 'hacl-star-**' | |
pull_request: | |
workflow_dispatch: | |
merge_group: | |
jobs: | |
default: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
run: | | |
sudo apt-get update | |
sudo apt-get install ninja-build nodejs | |
- name: Build JS bindings | |
run: | | |
./mach build -l js | |
- name: Test JS bindings | |
run: | | |
./mach test -l js |