Skip to content

chore(deps-dev): bump contentful from 10.2.3 to 10.2.4 #172

chore(deps-dev): bump contentful from 10.2.3 to 10.2.4

chore(deps-dev): bump contentful from 10.2.3 to 10.2.4 #172

Workflow file for this run

name: CI
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
container:
image: node:16.17
steps:
- uses: actions/checkout@v3
- name: Cache modules
uses: actions/cache@v3
id: node_cache
with:
path: node_modules
key: ${{ runner.OS }}-node_modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: ${{ steps.node_cache.outputs.cache-hit != 'true' }}
run: npm i
- name: Run lint
run: npm run lint
test:
runs-on: ubuntu-latest
container:
image: node:16.17
steps:
- uses: actions/checkout@v3
- name: Cache modules
uses: actions/cache@v3
id: node_cache
with:
path: node_modules
key: ${{ runner.OS }}-node_modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: ${{ steps.node_cache.outputs.cache-hit != 'true' }}
run: npm i
- name: Run test
run: npm test