feat(kernel): sync implementation with other languages #3
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: CI | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ci: | |
name: Continuous integration | |
runs-on: ubuntu-latest | |
container: | |
image: node:20-slim | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install npm modules | |
run: npm i | |
- name: Scan project for vulnerabilities | |
run: npm audit | |
- name: Check licenses | |
run: npm run check-licenses | |
- name: Run test suite | |
run: npm t | |
- name: Run build | |
run: npm run build |