Skip to content

Commit

Permalink
chore: setup CI (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
manuartero authored Nov 1, 2023
1 parent f149585 commit f82fcb5
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/blue-ball.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Blue Ball

on:
push:
branches: [main]
pull_request:
branches:
- main

jobs:
build:
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Release

on:
push:
branches: [main]

jobs:
release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.17.1

- run: npm ci --ignore-scripts
- run: npm run release
17 changes: 10 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
{
"name": "storming",
"version": "0.3.0",
"private": true,
"description": "Storming BoardGame - An original board game in React",
"type": "module",
"engines": {
"node": ">=18.17"
},
"engineStrict": true,
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/manuartero/storming"
},
"author": {
"name": "Manuel Artero",
"email": "manutero.developer@gmail.com"
},
"browserslist": {
"production": [
">0.2%",
Expand Down Expand Up @@ -52,7 +61,7 @@
"sass": "^1.54.0",
"semantic-release": "^22.0.6",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"typescript": "^4.9.5",
"vite": "^3.1.3",
"vite-plugin-svgr": "^2.2.1",
"vite-tsconfig-paths": "^3.5.1"
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit f82fcb5

Please sign in to comment.