Loading .gitlab-ci.yml 0 → 100644 +30 −0 Original line number Diff line number Diff line image: node:20 stages: - test default: tags: - inject before_script: - yarn # here we can use one cache for all jobs cache: key: yarn-cache paths: [ .yarn ] unit-test-job: stage: test script: - yarn test lint-test-job: stage: test script: - yarn lint tsc-test-job: stage: test script: - yarn workspace @inject/frontend tsc -b - yarn workspace @inject/frontend tsc Loading
.gitlab-ci.yml 0 → 100644 +30 −0 Original line number Diff line number Diff line image: node:20 stages: - test default: tags: - inject before_script: - yarn # here we can use one cache for all jobs cache: key: yarn-cache paths: [ .yarn ] unit-test-job: stage: test script: - yarn test lint-test-job: stage: test script: - yarn lint tsc-test-job: stage: test script: - yarn workspace @inject/frontend tsc -b - yarn workspace @inject/frontend tsc