/ .gitlab-ci.yml
.gitlab-ci.yml
1 stages: 2 # - test 3 - package 4 5 #e2e_tests: 6 # stage: test 7 # image: node 8 # script: 9 # - yarn 10 # - cd packages/community-node && yarn && yarn package && cd - 11 # - cd packages/electron-app && yarn && yarn package && cd - 12 # - cd packages/blog-service-tests && yarn && yarn test:e2e 13 # tags: ['rk-devbox1'] 14 15 package_windows: 16 stage: package 17 script: 18 - choco install yarn 19 - cd packages/community-node 20 - yarn 21 - yarn package 22 tags: ['pnc-ig87']