Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Add svelte check and build to CI
Sebastian Martinez committed 4 years ago
commit 8f3005f244386ccb17d21f0880c27eb84674be90
parent 841ce0646f9290632249cfeb7ea2cd9e284df702
2 files changed +22 -0
added .github/workflows/check-build.yml
@@ -0,0 +1,11 @@
+
name: check-build
+
on: [push]
+

+
jobs:
+
  check-format:
+
    runs-on: ubuntu-latest
+
    steps:
+
      - uses: actions/checkout@v2
+
      - uses: actions/setup-node@v1
+
      - run: npm ci
+
      - run: npm run build 
added .github/workflows/svelte-check.yml
@@ -0,0 +1,11 @@
+
name: svelte-check 
+
on: [push]
+

+
jobs:
+
  check-format:
+
    runs-on: ubuntu-latest
+
    steps:
+
      - uses: actions/checkout@v2
+
      - uses: actions/setup-node@v1
+
      - run: npm ci
+
      - run: npm run check