aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-09 23:07:10 -0700
committerFuwn <[email protected]>2021-05-09 23:07:10 -0700
commit50d4f4c041b0c1af65358ec007cb6ed57289a274 (patch)
treecb0cdb2d5985b506766073917dc41396a66a9001 /.github
parentfix(check): install dependencies before running check job (diff)
downloadsite-50d4f4c041b0c1af65358ec007cb6ed57289a274.tar.xz
site-50d4f4c041b0c1af65358ec007cb6ed57289a274.zip
ci(actions): delete check action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/check.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
deleted file mode 100644
index 2cbc19e..0000000
--- a/.github/workflows/check.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-name: Check ✅/ 🚫
-
-on:
- push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
-
-jobs:
- check:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [ 14.x, 15.x, 16.x ]
- steps:
- - name: Checkout 🛒
- uses: actions/checkout@v2
-
- - name: Setup Node.js - ${{ matrix.node-version }} 🚧
- uses: actions/setup-node@v2
- with:
- node-version: ${{ matrix.node-version }}
-
- - name: Install Dependencies 🔮
- run: npm install
-
- - name: Check 🙋‍♀️
- run: npm run build