Skip to content

Commit

Permalink
Fix github workflow name
Browse files Browse the repository at this point in the history
  • Loading branch information
simlmx committed Jul 5, 2024
1 parent 2419471 commit d9c533a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,18 @@ on:
branches: [ "main" ]

jobs:
build:

build_and_test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
# Note the yaml string for parameters...
run_install: |
- recursive: true
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- run: make init
- run: make build
- run: make check-format
- run: make test
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.PHONY: install
install:
pnpm install

.PHONY: build
build:
pnpm run -r build
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Dudo game at lefun.fun. https://lefun.fun/en/g/dudo

### Install the dependencies

pnpm install
make install

### Start de dev server

Expand Down

0 comments on commit d9c533a

Please sign in to comment.