chore(deps-dev): bump the npm_and_yarn group with 2 updates #65
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
timeout-minutes: 25 | |
environment: staging | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Install Node.js and NPM | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: npm install | |
run: | | |
npm install | |
- name: npm lint | |
run: | | |
npm run lint | |
# - name: npm exec tsc | |
# run: | | |
# npm exec tsc --verbose | |
- name: npm test | |
run: | | |
npm run test |