fix(sanity): makes the name search for getPlayer(s) case insensitive #267
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: | |
pull_request: | |
branches: ['*'] | |
jobs: | |
test: | |
name: Test on node ${{ matrix.node-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Reconfigure git to use HTTP authentication | |
run: > | |
git config --global url."https://github.com/".insteadOf | |
ssh://[email protected]/ | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- name: Run linters | |
run: npm run lint | |
- name: Build | |
run: npm run build:prod | |
- name: Listing | |
run: ls -a | |
- name: Run tests | |
run: npm run test:ci |