From 34d97d8577fe5a7c0d797c2e3d7d53e977806fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20=C5=BBydek?= Date: Mon, 25 Mar 2024 13:24:33 +0900 Subject: [PATCH] ci: remove old action --- .github/workflows/build.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 8bb2eff..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,33 +0,0 @@ -# Reference on this file: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions -name: Lint, build and test -on: - push: - branches: - - main - pull_request: -jobs: - build: - name: Lint, build and test - runs-on: ubuntu-latest - timeout-minutes: 3 - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Cache - uses: actions/cache@v2 - with: - path: | - **/node_modules - !**/dist/node_modules - key: nodemodules-${{ hashFiles('**/yarn.lock') }} - restore-keys: nodemodules- - - name: Install Node packages - run: yarn install - - name: Lint - run: yarn lint - - name: Typecheck - run: yarn typecheck - - name: Tests - run: yarn test - - name: Build - run: yarn build