Skip to content

Commit

Permalink
disable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieFox committed Jun 13, 2024
1 parent a779ffd commit 05be4f3
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 49 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/gh-pages-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
name: gh-pages-deploy

on:
push:
branches:
- main

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
persist-credentials: false
- uses: actions/setup-node@v2
with:
node-version: '12' # TODO IDK what version nighttab is built with normally.
cache: 'npm'
- run: |
npm install
npm run lint
npm test
npm run build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist/web
# name: gh-pages-deploy
#
# on:
# push:
# branches:
# - main
#
# jobs:
# build-and-deploy:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/[email protected]
# with:
# persist-credentials: false
# - uses: actions/setup-node@v2
# with:
# node-version: '12' # TODO IDK what version nighttab is built with normally.
# cache: 'npm'
# - run: |
# npm install
# npm run lint
# npm test
# npm run build
#
# - name: Deploy
# uses: JamesIves/[email protected]
# with:
# branch: gh-pages
# folder: dist/web
38 changes: 19 additions & 19 deletions .github/workflows/pull-request-tests.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: Run tests

on: [push, pull_request]

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v2
- name: Install Dependecies & Test
- uses: actions/setup-node@v2
with:
node-version: '12' # TODO IDK what version nighttab is built with normally.
cache: 'npm'
- run: |
npm install
npm run lint
npm test
# name: Run tests
#
# on: [push, pull_request]
#
# jobs:
# build-and-deploy:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# - uses: actions/checkout@v2
# - name: Install Dependecies & Test
# - uses: actions/setup-node@v2
# with:
# node-version: '12' # TODO IDK what version nighttab is built with normally.
# cache: 'npm'
# - run: |
# npm install
# npm run lint
# npm test

0 comments on commit 05be4f3

Please sign in to comment.