chore(deps-dev): bump typescript from 5.4.5 to 5.5.2 #236
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: Test | |
on: pull_request | |
jobs: | |
formating: | |
name: Formating | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- name: Install | |
run: yarn install | |
- name: Prettier | |
run: yarn test:prettier | |
test: | |
name: Test Node.JS | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [16, 18, 20] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install | |
run: yarn install | |
- name: Test | |
run: yarn test | |
coverage: | |
name: Coverage Report | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- name: Install | |
run: yarn install | |
- name: Test | |
run: yarn test --coverage |