Skip to content

Commit

Permalink
Merge pull request #1 from yoyomo/github-actions
Browse files Browse the repository at this point in the history
Github Actions
  • Loading branch information
yoyomo authored May 30, 2024
2 parents bb6ee1a + ae2d6d5 commit d3a537a
Show file tree
Hide file tree
Showing 16 changed files with 31 additions and 64 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Node.js CI

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

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
Binary file removed docs/android-chrome-192x192.png
Binary file not shown.
Binary file removed docs/android-chrome-512x512.png
Binary file not shown.
Binary file removed docs/apple-touch-icon.png
Binary file not shown.
13 changes: 0 additions & 13 deletions docs/asset-manifest.json

This file was deleted.

Binary file removed docs/favicon-16x16.png
Binary file not shown.
Binary file removed docs/favicon-32x32.png
Binary file not shown.
Binary file removed docs/favicon.ico
Binary file not shown.
1 change: 0 additions & 1 deletion docs/index.html

This file was deleted.

1 change: 0 additions & 1 deletion docs/site.webmanifest

This file was deleted.

4 changes: 0 additions & 4 deletions docs/static/css/main.9baad179.css

This file was deleted.

1 change: 0 additions & 1 deletion docs/static/css/main.9baad179.css.map

This file was deleted.

3 changes: 0 additions & 3 deletions docs/static/js/main.ba5efeb6.js

This file was deleted.

39 changes: 0 additions & 39 deletions docs/static/js/main.ba5efeb6.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion docs/static/js/main.ba5efeb6.js.map

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"homepage": ".",
"scripts": {
"start": "react-scripts start",
"build": "BUILD_PATH='./docs' react-scripts build"
"build": "react-scripts build"
},
"eslintConfig": {
"extends": [
Expand Down

0 comments on commit d3a537a

Please sign in to comment.