mirror of
https://github.com/Queer-Lexikon/regenbogenkarte
synced 2024-11-23 20:53:10 +00:00
build: add makefile for easier builds
This commit is contained in:
parent
1dd4f6bddb
commit
1cf07adb30
2 changed files with 21 additions and 9 deletions
12
.github/workflows/pr.yml
vendored
12
.github/workflows/pr.yml
vendored
|
@ -12,11 +12,8 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Install dependencies
|
- name: Format files
|
||||||
run: npm ci
|
run: make format
|
||||||
|
|
||||||
- name: Format files using prettier
|
|
||||||
run: npm run format
|
|
||||||
|
|
||||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
name: Commit possible changes
|
name: Commit possible changes
|
||||||
|
@ -27,8 +24,5 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Install dependencies
|
|
||||||
run: npm ci
|
|
||||||
|
|
||||||
- name: Build the project
|
- name: Build the project
|
||||||
run: npm run build
|
run: make build
|
||||||
|
|
18
Makefile
Normal file
18
Makefile
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
NPM=npm
|
||||||
|
|
||||||
|
.PHONY: install-deps
|
||||||
|
install-deps:
|
||||||
|
$(NPM) ci
|
||||||
|
|
||||||
|
.PHONY: build
|
||||||
|
build: install-deps
|
||||||
|
$(NPM) run build
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
format: install-deps
|
||||||
|
$(NPM) run format
|
||||||
|
|
||||||
|
.PHONY: test
|
||||||
|
test: install-deps
|
||||||
|
$(NPM) run test
|
||||||
|
|
Loading…
Reference in a new issue