image: node:latest cache: key: "yarn" paths: - .yarn-cache/ stages: - build - release before_script: - yarn install --frozen-lockfile --cache-folder .yarn-cache build: stage: build script: - yarn test - yarn build artifacts: paths: - dist/ publish: stage: release script: - npx semantic-release