build #159
This file contains hidden or 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 | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "0 5 * * 1" # Every Monday at 5:00 UTC | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| virtual-environment: [ubuntu-latest, windows-2025, ubuntu-24.04-arm] | |
| node: [18, 20, 22, 24, latest] | |
| nan-version: [nan-earliest, nan-latest] | |
| runs-on: ${{ matrix.virtual-environment }} | |
| steps: | |
| - name: Configure git (Windows specific) | |
| if: matrix.virtual-environment == 'windows-2025' | |
| run: git config --global core.autocrlf false | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install earliest nan dependency | |
| shell: bash | |
| if: matrix.nan-version == 'nan-earliest' | |
| run: | | |
| earliest_nan_version="$(npm pkg get dependencies | jq -r '.[] | ltrimstr("^")')" | |
| echo "Installing nan version $earliest_nan_version" | |
| npm install nan@"$earliest_nan_version" | |
| - name: Install dependencies and build | |
| run: | | |
| npm install | |
| npm explain nan | |
| - name: Run linter | |
| run: node node_modules/eslint/bin/eslint . | |
| - name: Run test suite | |
| run: node node_modules/mocha/bin/mocha tests |