mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-06-30 22:30:38 +02:00
disable workflows
This commit is contained in:
60
.github/workflows/gh-pages-deploy.yml
vendored
60
.github/workflows/gh-pages-deploy.yml
vendored
@ -1,30 +1,30 @@
|
|||||||
name: gh-pages-deploy
|
# name: gh-pages-deploy
|
||||||
|
#
|
||||||
on:
|
# on:
|
||||||
push:
|
# push:
|
||||||
branches:
|
# branches:
|
||||||
- main
|
# - main
|
||||||
|
#
|
||||||
jobs:
|
# jobs:
|
||||||
build-and-deploy:
|
# build-and-deploy:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
uses: actions/checkout@v2.3.1
|
# uses: actions/checkout@v2.3.1
|
||||||
with:
|
# with:
|
||||||
persist-credentials: false
|
# persist-credentials: false
|
||||||
- uses: actions/setup-node@v2
|
# - uses: actions/setup-node@v2
|
||||||
with:
|
# with:
|
||||||
node-version: '12' # TODO IDK what version nighttab is built with normally.
|
# node-version: '12' # TODO IDK what version nighttab is built with normally.
|
||||||
cache: 'npm'
|
# cache: 'npm'
|
||||||
- run: |
|
# - run: |
|
||||||
npm install
|
# npm install
|
||||||
npm run lint
|
# npm run lint
|
||||||
npm test
|
# npm test
|
||||||
npm run build
|
# npm run build
|
||||||
|
#
|
||||||
- name: Deploy
|
# - name: Deploy
|
||||||
uses: JamesIves/github-pages-deploy-action@4.1.3
|
# uses: JamesIves/github-pages-deploy-action@4.1.3
|
||||||
with:
|
# with:
|
||||||
branch: gh-pages
|
# branch: gh-pages
|
||||||
folder: dist/web
|
# folder: dist/web
|
||||||
|
38
.github/workflows/pull-request-tests.yml
vendored
38
.github/workflows/pull-request-tests.yml
vendored
@ -1,19 +1,19 @@
|
|||||||
name: Run tests
|
# name: Run tests
|
||||||
|
#
|
||||||
on: [push, pull_request]
|
# on: [push, pull_request]
|
||||||
|
#
|
||||||
jobs:
|
# jobs:
|
||||||
build-and-deploy:
|
# build-and-deploy:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
- uses: actions/checkout@v2
|
# - uses: actions/checkout@v2
|
||||||
- name: Install Dependecies & Test
|
# - name: Install Dependecies & Test
|
||||||
- uses: actions/setup-node@v2
|
# - uses: actions/setup-node@v2
|
||||||
with:
|
# with:
|
||||||
node-version: '12' # TODO IDK what version nighttab is built with normally.
|
# node-version: '12' # TODO IDK what version nighttab is built with normally.
|
||||||
cache: 'npm'
|
# cache: 'npm'
|
||||||
- run: |
|
# - run: |
|
||||||
npm install
|
# npm install
|
||||||
npm run lint
|
# npm run lint
|
||||||
npm test
|
# npm test
|
||||||
|
Reference in New Issue
Block a user