fix(test): added test for null private field #269
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: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| setup: | |
| name: Setup | |
| runs-on: ubuntu-latest | |
| outputs: | |
| nodes: ${{ steps.nodes.outputs.nodes }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v3 | |
| - name: Setup Node Version Matrix | |
| id: nodes | |
| run: | | |
| NODES=$(npx -y @pkgjs/nv ls supported | jq '. | .version' | paste -sd "," -) | |
| echo "nodes=[${NODES}]" >> $GITHUB_OUTPUT | |
| test: | |
| # uses: pkgjs/action/.github/workflows/node-test.yaml@v0 | |
| runs-on: ubuntu-latest | |
| needs: setup | |
| strategy: | |
| matrix: | |
| node-version: ${{ fromJson(needs.setup.outputs.nodes) }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup git user | |
| run: | | |
| git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)" | |
| git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)" | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: npm install and test | |
| run: npm it |