Skip to content

chore(deps): update dependency @types/node to v20.17.7 #717

chore(deps): update dependency @types/node to v20.17.7

chore(deps): update dependency @types/node to v20.17.7 #717

Workflow file for this run

name: 'Continuous Integration'
on:
push:
branches: ['main']
paths-ignore:
- '.husky/**'
- '.gitignore'
- 'LICENSE'
- 'README.md'
pull_request:
branches: ['main']
paths-ignore:
- '.husky/**'
- '.gitignore'
- 'LICENSE'
- 'README.md'
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16]
timeout-minutes: 5
steps:
- name: Checkout 🛎
uses: actions/checkout@master
- name: Setup node env with ${{ matrix.node-version }} 🏗
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies 👨🏻‍💻
run: yarn install --frozen-lockfile
- name: Build 🛠
run: yarn build
- name: Run linter ✨
run: yarn lint
- name: Run tests 👀
run: yarn test