mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 22:24:36 +00:00
Merge pull request #6 from davotronic5000/develop
fixing builld and removing broken actions
This commit is contained in:
commit
3f6e54764b
3 changed files with 5 additions and 44 deletions
21
.github/workflows/changelog-check.yml
vendored
21
.github/workflows/changelog-check.yml
vendored
|
@ -1,21 +0,0 @@
|
||||||
name: Enforce Changelog Update
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- develop
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Check Actions
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Changelog check
|
|
||||||
uses: Zomzog/changelog-checker@v1.2.0
|
|
||||||
with:
|
|
||||||
fileName: CHANGELOG.md
|
|
||||||
noChangelogLabel: no changelog
|
|
||||||
checkNotification: Simple
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
8
.github/workflows/deploy.yml
vendored
8
.github/workflows/deploy.yml
vendored
|
@ -13,9 +13,11 @@ jobs:
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install and Build 🔧
|
- name: Install and Build 🔧
|
||||||
run: |
|
uses: actions/setup-node@v3
|
||||||
npm ci
|
with:
|
||||||
npm run build
|
node-version: 16
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm run build
|
||||||
|
|
||||||
- name: Deploy 🚀
|
- name: Deploy 🚀
|
||||||
uses: JamesIves/github-pages-deploy-action@v4.2.5
|
uses: JamesIves/github-pages-deploy-action@v4.2.5
|
||||||
|
|
20
.github/workflows/linter.yml
vendored
20
.github/workflows/linter.yml
vendored
|
@ -1,20 +0,0 @@
|
||||||
name: Lint Code Base
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ main, develop ]
|
|
||||||
pull_request:
|
|
||||||
branches: [ main, develop ]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Lint Code Base
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/setup-node@v2
|
|
||||||
with:
|
|
||||||
node-version: '14'
|
|
||||||
- run: npm install
|
|
||||||
- run: npm run lint-ci
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue