This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
Web tests for sigopt/sigopt-server@refs/heads/pre-commit-ci-update-config #1864
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: web code tests | |
permissions: read-all | |
run-name: Web tests for ${{ github.repository }}@${{ github.ref }} | |
on: | |
push: {} | |
jobs: | |
check-node-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: yarn install | |
- run: ./ci/check_node_deps.sh | |
dead-code: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: yarn install | |
- run: make submodules | |
- run: make web-dead-code | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: yarn install | |
- run: yarn -s test |