Skip to content

build(deps-dev): bump typescript from 5.3.3 to 5.6.2 #1204

build(deps-dev): bump typescript from 5.3.3 to 5.6.2

build(deps-dev): bump typescript from 5.3.3 to 5.6.2 #1204

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.cache
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
${{ runner.os }}-
- run: yarn
- run: yarn lint
- run: yarn workspace nuxt-jsonld test:ci
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cypress-io/github-action@v2
with:
build: yarn workspace example build
start: yarn workspace example start
command: yarn cy:ci