Skip to content

build(deps-dev): bump @nuxt/devtools from 0.8.5 to 1.5.0 #1209

build(deps-dev): bump @nuxt/devtools from 0.8.5 to 1.5.0

build(deps-dev): bump @nuxt/devtools from 0.8.5 to 1.5.0 #1209

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