Skip to content

fix: disable docker layer cache to fix pipeline on main branch #331

fix: disable docker layer cache to fix pipeline on main branch

fix: disable docker layer cache to fix pipeline on main branch #331

Workflow file for this run

name: node
on:
push:
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
submodules: recursive
lfs: true
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
cache-dependency-path: consumer-server/package-lock.json
- name: install
run: npm ci
working-directory: consumer-server
- name: build
run: npm run build
working-directory: consumer-server
- name: test
run: npm run test
working-directory: consumer-server