Adding new dependency #7
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: Contract Tests | |
on: push | |
jobs: | |
clang-formatting-check: | |
name: clang-format check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
path: | |
- 'contracts/api/src' | |
- 'contracts/api/include/api' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run clang-format style check | |
uses: jidicula/[email protected] | |
with: | |
clang-format-version: '16' | |
check-path: ${{ matrix.path }} | |
run-unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18] | |
name: Tests | |
steps: | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: make node_modules | |
- name: Install CDT | |
run: | | |
curl -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.ACCESS_TOKEN }}" -L -o cdt.zip https://api.github.com/repos/AntelopeIO/cdt/actions/artifacts/2440855012/zip | |
sudo apt-get update | |
sudo apt install unzip libcurl4-gnutls-dev | |
unzip cdt.zip | |
sudo dpkg -i ./cdt_4.2.0-dev_amd64.deb | |
- name: Run checks | |
run: make jscheck | |
- name: Run tests | |
run: make test |