image: node:lts stages: - test - deploy test: stage: test script: - npm ci - npm run test - npm run build pages: stage: deploy script: - npm ci - rm -rf public - node ./node_modules/@storybook/react/bin/build.js -s public -o public artifacts: paths: - public expire_in: 1 year only: - master - tags