Fix GH action (semistandard complaint, and cargo install). #15
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: Build and Test | |
permissions: read-all | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- gh-actions-test | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: | |
- 18.20.2 | |
- 20.12.1 | |
- 21.7.3 | |
- 22.0.0 | |
steps: | |
- name: Generate dynamic matrix hash | |
id: generate_hash | |
run: | | |
MATRIX_VARS=$(echo '${{ toJSON(matrix) }}') | |
MATRIX_HASH=$(echo -n "$MATRIX_VARS" | md5sum | awk '{print $1}') | |
echo "MATRIX_HASH=$MATRIX_HASH" >> $GITHUB_ENV | |
- name: Unique Matrix ID | |
run: | | |
GH_ACTION_UNIQUE_ID="${{ github.run_id }}-$MATRIX_HASH" | |
echo "GH_ACTION_UNIQUE_ID=$GH_ACTION_UNIQUE_ID" >> $GITHUB_ENV | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Set up .nvmrc | |
run: echo v${{ matrix.node-version }} > .nvmrc | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8.18 | |
- name: Install Dependencies (Ubuntu) | |
run: | | |
bash scripts/install-reqs.sh | |
# - name: Install nvm | |
# run: | | |
# curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash | |
- name: Run everything | |
run: | | |
source "$HOME/.cargo/env" | |
npm install -g npm@latest | |
npm install | |
bash scripts/pre.sh |