chore: fix ts-node example's moduleResolution #217
Workflow file for this run
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: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
schedule: | |
- cron: '0 6 * * 0' | |
jobs: | |
test: | |
name: 'Node.js v${{ matrix.node }}' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- 14 | |
- 16 | |
- 18 | |
steps: | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '${{ matrix.node }}' | |
- uses: actions/checkout@v2 | |
- name: 'Cache node_modules' | |
uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-v${{ matrix.node }}-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-v${{ matrix.node }}- | |
- name: Install Dependencies | |
run: npm install | |
- name: Install Playwright | |
run: npx playwright install | |
- name: Run All Node.js Tests | |
run: npm run test |