Skip to content

Commit

Permalink
Merge pull request #44 from eugene-serb/dev
Browse files Browse the repository at this point in the history
Release 1.3.1
  • Loading branch information
eugene-serb authored Jun 18, 2023
2 parents 394888c + c33fb3d commit 11b01a2
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 22 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Format

on:
push:
branches:
- master
pull_request:
branches:
- master
- dev
workflow_dispatch:

jobs:
format:
strategy:
matrix:
node-version: [18]
os: [ubuntu-22.04]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run format
38 changes: 19 additions & 19 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "game-of-life",
"version": "1.3",
"version": "1.3.1",
"description": "This is a cellular automaton that implements Conway's Game of Life. Contains a library of figurines and tools.",
"keywords": [
"game-of-life",
Expand Down Expand Up @@ -43,14 +43,14 @@
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.42.0",
"eslint": "^8.43.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^8.8.0",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"webpack": "^5.86.0",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
Expand Down

0 comments on commit 11b01a2

Please sign in to comment.