Skip to content

fix(deps): update dependency contentful to v10.14.1 #778

fix(deps): update dependency contentful to v10.14.1

fix(deps): update dependency contentful to v10.14.1 #778

Workflow file for this run

name: CI
on: push
jobs:
install:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: 'yarn'
node-version: ${{ matrix.node-version }}
- run: yarn
test:
name: 'πŸ§ͺ Vitest'
needs: [install]
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: 'yarn'
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn test
build:
name: '🧰 Build'
needs: [install]
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: 'yarn'
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build
ts:
name: 'πŸ” TypeScript'
needs: [install]
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: 'yarn'
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn tsc
lint:
name: 'πŸ” ESLint'
needs: [install]
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: 'yarn'
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn lint