Skip to content

Update dependency @vue/runtime-dom to v3.5.10 (beta) #209

Update dependency @vue/runtime-dom to v3.5.10 (beta)

Update dependency @vue/runtime-dom to v3.5.10 (beta) #209

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
steps:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v2
- name: cache node_modules
uses: actions/cache@v2
id: cache
with:
path: |
node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
sudo apt-get install build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
npm ci
- name: Test
run: |
npm run test