Skip to content

build(deps-dev): bump @types/node from 18.16.4 to 20.3.3 #451

build(deps-dev): bump @types/node from 18.16.4 to 20.3.3

build(deps-dev): bump @types/node from 18.16.4 to 20.3.3 #451

Workflow file for this run

name: Node.JS CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: yarn install
- name: Test
run: yarn test:no-watch --passWithNoTests
env:
CI: true
RUN_SLOW_TESTS: true
# - name: Build
# run: yarn build