Skip to content

Bump @types/node from 18.0.6 to 20.10.7 #358

Bump @types/node from 18.0.6 to 20.10.7

Bump @types/node from 18.0.6 to 20.10.7 #358

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '*'
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- uses: actions/setup-node@v1
with:
node-version: 14
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- run: yarn install --frozen-lockfile
- run: yarn run lint
- run: yarn run build
- run: yarn run test