Loading .gitlab-ci.yml +4 −10 Original line number Diff line number Diff line image: "node:16-alpine" stages: - build - test - deploy build: stage: build script: - yarn install --frozen-lockfile --check-files --non-interactive - yarn build artifacts: paths: - public pages: stage: deploy script: - yarn install --frozen-lockfile --check-files --non-interactive - yarn build - mv public public-vue - mv dist public - echo 'Pages deployment job' artifacts: paths: Loading Loading
.gitlab-ci.yml +4 −10 Original line number Diff line number Diff line image: "node:16-alpine" stages: - build - test - deploy build: stage: build script: - yarn install --frozen-lockfile --check-files --non-interactive - yarn build artifacts: paths: - public pages: stage: deploy script: - yarn install --frozen-lockfile --check-files --non-interactive - yarn build - mv public public-vue - mv dist public - echo 'Pages deployment job' artifacts: paths: Loading