File tree Expand file tree Collapse file tree 3 files changed +49
-0
lines changed Expand file tree Collapse file tree 3 files changed +49
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : docs
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ permissions :
7
+ contents : write
8
+ jobs :
9
+ deploy :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v4
13
+ - name : Configure Git Credentials
14
+ run : |
15
+ git config user.name github-actions[bot]
16
+ git config user.email 41898282+github-actions[bot]@users.noreply.github.com
17
+ - uses : actions/setup-python@v5
18
+ with :
19
+ python-version : 3.x
20
+ - run : echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
21
+ - uses : actions/cache@v4
22
+ with :
23
+ key : mkdocs-material-${{ env.cache_id }}
24
+ path : .cache
25
+ restore-keys : |
26
+ mkdocs-material-
27
+ - run : pip install mkdocs-material
28
+ - run : mkdocs gh-deploy --force
Original file line number Diff line number Diff line change
1
+ # Endless Simple Idle Game using React
2
+
3
+ This app is an endless idle game written in JavaScript using React templates. You earn points when you click on the button.
4
+
5
+ ## Running The App
6
+
7
+ 1 . Clone the repository.
8
+ 2 . Run ` npm install ` to install dependencies.
9
+ 3 . Run ` npm start ` to start the server.
10
+ 4 . Open ` localhost:3000 ` on your browser.
11
+
12
+ ## Running Unit Tests
13
+
14
+ Run ` npm run test ` to run unit tests after installing dependencies.
15
+
16
+ ## Building The App
17
+
18
+ Run ` npm run build ` to build the app for production mode and generates the ` build ` folder with minified code.
Original file line number Diff line number Diff line change
1
+ site_name : Endless Simple Idle Game using React
2
+ theme : material
3
+ repo_url : https://github.com/lulunac27a/react-endless-simple-idle-game
You can’t perform that action at this time.
0 commit comments