Bump @types/jest from 26.0.24 to 29.5.6 #416
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: CI | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- 10.x | |
- 12.x | |
- 14.x | |
name: Node.js ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3.4.1 | |
name: Installing Node.js v${{ matrix.node }} | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Installing dependencies | |
run: | | |
npm install | |
- name: Lint the code | |
run: | | |
npm run lint | |
- name: Compile TypeScript | |
run: | | |
npm run build | |
- name: Execute tests | |
run: | | |
npm run test |