Skip to content

Commit 224b802

Browse files
committed
chore: update dev dependencies and workflow
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
1 parent 95bd865 commit 224b802

12 files changed

+1071
-3182
lines changed

.eslintrc.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:@typescript-eslint/recommended",
9+
"plugin:prettier/recommended"
10+
],
11+
"parser": "@typescript-eslint/parser",
12+
"parserOptions": {
13+
"ecmaVersion": "latest",
14+
"sourceType": "module"
15+
},
16+
"plugins": [
17+
"@typescript-eslint",
18+
"prettier"
19+
]
20+
}

hack/build.Dockerfile renamed to dev.Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# syntax=docker/dockerfile:1.3-labs
1+
# syntax=docker/dockerfile:1
22

3-
ARG NODE_VERSION
3+
ARG NODE_VERSION=12
44

55
FROM node:${NODE_VERSION}-alpine AS base
66
RUN apk add --no-cache cpio findutils git
@@ -55,7 +55,7 @@ RUN --mount=type=bind,target=.,rw \
5555
FROM scratch AS format-update
5656
COPY --from=format /out /
5757

58-
FROM deps AS format-validate
58+
FROM deps AS lint
5959
RUN --mount=type=bind,target=.,rw \
6060
--mount=type=cache,target=/src/node_modules \
61-
yarn run format-check
61+
yarn run lint

0 commit comments

Comments
 (0)