Skip to content

Merge pull request #57 from danielroe/v4-compatibility #79

Merge pull request #57 from danielroe/v4-compatibility

Merge pull request #57 from danielroe/v4-compatibility #79

Workflow file for this run

name: Test latest code
on:
push:
branches: [main]
workflow_dispatch:
workflow_call:
permissions:
contents: read
concurrency:
group: "test"
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
cache: yarn
- name: Restore cache
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install
- name: Prepare Nuxt
run: yarn dev:prepare
- name: Test
run: yarn test