docs: explicit call out for when process.cwd is set #191
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: 'tests' | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: 'ubuntu-latest' | |
strategy: | |
matrix: | |
node-version: ['12.20.0', '14.13.1', '16.0.0', '18.0.0', 'lts/*'] | |
fail-fast: false | |
steps: | |
- name: 'Checkout Project' | |
uses: 'actions/checkout@v3' | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: 'actions/[email protected]' | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: 'Cache Node dependencies' | |
uses: 'actions/[email protected]' | |
with: | |
path: '~/.npm' | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: 'Install Dependencies' | |
run: 'npm install' | |
- name: 'Run Tests' | |
run: 'npm run test-ci' |