From 2847318294c6c844d87e7f97483b8ac1f0ac28e6 Mon Sep 17 00:00:00 2001 From: insert <paulmakles@gmail.com> Date: Thu, 5 Aug 2021 16:13:30 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f93a654 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,40 @@ +image: node:14-buster + +variables: + GIT_SUBMODULE_STRATEGY: recursive + +cache: + paths: + - node_modules + +# Fetch dependencies and setup project for compilation. +install: + stage: prepare + script: + - yarn + +# Type check the project +typecheck: + stage: test + needs: + - install + dependencies: + - install + script: + - yarn typecheck + +# Lint the project and check prettier output. +lint: + stage: test + allow_failure: true + needs: + - install + dependencies: + - install + script: + - yarn lint + - yarn --check 'src/**/*.{js,jsx,ts,tsx}' + +stages: + - prepare + - test -- GitLab