Skip to content

Update dependency meow to v13 #1794

Update dependency meow to v13

Update dependency meow to v13 #1794

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
env:
DATABASE_URL: 'file:./keystone.db'
strategy:
fail-fast: false
matrix:
createProject: ['cka', 'cli']
steps:
- uses: actions/checkout@main
- uses: ./.github/actions/ci-setup
- uses: microsoft/playwright-github-action@v1
- run: node ./node_modules/playwright/install.js
- name: Tests
run: yarn test:unit
timeout-minutes: 10
env:
TEST_MATRIX_NAME: ${{ matrix.createProject }}
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: ./.github/actions/ci-setup
- name: Prettier
run: yarn lint:prettier
- name: TypeScript
run: yarn lint:types
- name: Preconstruct
run: yarn build