# This file is a template, and might need editing before it works on your project. # Official framework image. Look for the different tagged releases at: # https://hub.docker.com/r/library/node/tags/ image: node:16 cache: key: ${CI_COMMIT_REF_SLUG} paths: - node_modules/ before_script: - yarn install --frozen-lockfile test: script: - yarn test build: script: - yarn run css - yarn run build-storybook artifacts: paths: - "dist/" - public pages: stage: deploy script: - yarn run build-storybook artifacts: paths: - public only: - master