From e680ea17d7847aa1c575ffbc5cec2007e7a1c1f8 Mon Sep 17 00:00:00 2001 From: Piotr Srebniak Date: Sun, 30 May 2021 21:14:46 +0200 Subject: [PATCH] feat: add gitlab CI --- .github/workflows/blank.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 70bb266..c441b9e 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -24,21 +24,9 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - - name: cache node_modules directory - uses: actions/cache@v1 - id: node-cache - with: - path: node_modules - key: ${{ runner.os }}-node-cache - restore-keys: | - ${{ runner.os }}-node-cache - - uses: actions/setup-node@v1 with: node-version: 14.x - run: yarn install - run: yarn test - - run: yarn build - -