Skip to content

Commit 6f49e90

Browse files
authored
Merge pull request #44 from eugene-serb/dev
Release 1.4.1
2 parents 6e5465a + 3d6ad69 commit 6f49e90

File tree

3 files changed

+52
-22
lines changed

3 files changed

+52
-22
lines changed

.github/workflows/format.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Format
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
- dev
11+
workflow_dispatch:
12+
13+
jobs:
14+
format:
15+
strategy:
16+
matrix:
17+
node-version: [18]
18+
os: [ubuntu-22.04]
19+
20+
runs-on: ${{ matrix.os }}
21+
22+
steps:
23+
- uses: actions/checkout@v3
24+
- name: Use Node.js ${{ matrix.node-version }}
25+
uses: actions/setup-node@v3
26+
with:
27+
node-version: ${{ matrix.node-version }}
28+
cache: 'npm'
29+
- run: npm install
30+
- run: npm run format

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "snake-game",
3-
"version": "1.4",
3+
"version": "1.4.1",
44
"description": "This is a simple browser snake-game. Let's have fun!",
55
"keywords": [
66
"snake-game",
@@ -42,14 +42,14 @@
4242
"babel-loader": "^9.1.2",
4343
"clean-webpack-plugin": "^4.0.0",
4444
"copy-webpack-plugin": "^11.0.0",
45-
"eslint": "^8.42.0",
45+
"eslint": "^8.43.0",
4646
"eslint-cli": "^1.1.1",
4747
"eslint-config-prettier": "^8.8.0",
4848
"eslint-webpack-plugin": "^4.0.1",
4949
"html-webpack-plugin": "^5.5.3",
5050
"jest": "^29.5.0",
5151
"prettier": "^2.8.8",
52-
"webpack": "^5.86.0",
52+
"webpack": "^5.87.0",
5353
"webpack-cli": "^5.1.4",
5454
"webpack-dev-server": "^4.15.1"
5555
}

0 commit comments

Comments
 (0)