Skip to content

Commit c25888f

Browse files
authored
chore: update dev dependencies and workflow (#342)
Co-authored-by: CrazyMax <[email protected]>
1 parent ec57748 commit c25888f

20 files changed

+2135
-15578
lines changed

.eslintrc.json

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

__tests__/context.test.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1+
import {beforeEach, describe, expect, it, jest} from '@jest/globals';
12
import * as os from 'os';
23
import * as context from '../src/context';
34

45
describe('setOutput', () => {
56
beforeEach(() => {
6-
process.stdout.write = jest.fn();
7+
process.stdout.write = jest.fn() as typeof process.stdout.write;
78
});
89

10+
// eslint-disable-next-line jest/expect-expect
911
it('setOutput produces the correct command', () => {
1012
context.setOutput('some output', 'some value');
1113
assertWriteCalls([`::set-output name=some output::some value${os.EOL}`]);
1214
});
1315

16+
// eslint-disable-next-line jest/expect-expect
1417
it('setOutput handles bools', () => {
1518
context.setOutput('some output', false);
1619
assertWriteCalls([`::set-output name=some output::false${os.EOL}`]);
1720
});
1821

22+
// eslint-disable-next-line jest/expect-expect
1923
it('setOutput handles numbers', () => {
2024
context.setOutput('some output', 1.01);
2125
assertWriteCalls([`::set-output name=some output::1.01${os.EOL}`]);

__tests__/git.test.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
1+
import {describe, expect, it} from '@jest/globals';
12
import * as git from '../src/git';
23

34
describe('git', () => {
45
it('returns git tag through describe', async () => {
56
process.env.GITHUB_SHA = '309312125ed7a32fcd48f3a1e24dcafe669c186a';
67
const tag: string = await git.getTag();
7-
console.log(`tag: ${tag}`);
88
expect(tag).not.toEqual('');
99
});
10+
1011
it('returns git tag through GITHUB_SHA', async () => {
1112
process.env.GITHUB_SHA = '6389ff5bd287fd6948a7ccda8af8da4f0bbc856a';
1213
const tag: string = await git.getTag();
13-
console.log(`tag: ${tag}`);
1414
expect(tag).toEqual('v2.2.1');
1515
});
16+
1617
it('returns git tag through GITHUB_REF', async () => {
1718
process.env.GITHUB_REF = 'refs/tags/v2.2.1';
1819
const tag: string = await git.getTag();
19-
console.log(`tag: ${tag}`);
2020
expect(tag).toEqual('v2.2.1');
2121
});
22+
2223
it('checks if tag is dirty', async () => {
2324
expect(await git.isTagDirty('v1.3.1')).toBe(true);
2425
});
26+
2527
it('returns short commit', async () => {
2628
const commit: string = await git.getShortCommit();
27-
console.log(`commit: ${commit}`);
2829
expect(commit).not.toEqual('');
2930
});
3031
});

__tests__/github.test.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import {describe, expect, it} from '@jest/globals';
12
import * as github from '../src/github';
23

34
describe('github', () => {
@@ -6,26 +7,31 @@ describe('github', () => {
67
expect(release).not.toBeNull();
78
expect(release?.tag_name).not.toEqual('');
89
});
10+
911
it('returns v0.182.0 GoReleaser GitHub release', async () => {
1012
const release = await github.getRelease('goreleaser', 'v0.182.0');
1113
expect(release).not.toBeNull();
1214
expect(release?.tag_name).toEqual('v0.182.0');
1315
});
16+
1417
it('returns v0.182.1 GoReleaser GitHub release', async () => {
1518
const release = await github.getRelease('goreleaser', '~> 0.182');
1619
expect(release).not.toBeNull();
1720
expect(release?.tag_name).toEqual('v0.182.1');
1821
});
22+
1923
it('returns latest GoReleaser Pro GitHub release', async () => {
2024
const release = await github.getRelease('goreleaser-pro', 'latest');
2125
expect(release).not.toBeNull();
2226
expect(release?.tag_name).not.toEqual('');
2327
});
28+
2429
it('returns v0.182.0-pro GoReleaser Pro GitHub release', async () => {
2530
const release = await github.getRelease('goreleaser-pro', 'v0.182.0-pro');
2631
expect(release).not.toBeNull();
2732
expect(release?.tag_name).toEqual('v0.182.0-pro');
2833
});
34+
2935
it('returns v0.182.1-pro GoReleaser Pro GitHub release when using semver', async () => {
3036
const release = await github.getRelease('goreleaser-pro', '~> 0.182');
3137
expect(release).not.toBeNull();

__tests__/goreleaser.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import {describe, expect, it} from '@jest/globals';
12
import * as fs from 'fs';
23
import * as goreleaser from '../src/goreleaser';
34

@@ -27,6 +28,7 @@ describe('distribSuffix', () => {
2728
it('suffixes pro distribution', async () => {
2829
expect(goreleaser.distribSuffix('goreleaser-pro')).toEqual('-pro');
2930
});
31+
3032
it('does not suffix oss distribution', async () => {
3133
expect(goreleaser.distribSuffix('goreleaser')).toEqual('');
3234
});

dev.Dockerfile

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# syntax=docker/dockerfile:1
2+
3+
ARG NODE_VERSION=12
4+
5+
FROM node:${NODE_VERSION}-alpine AS base
6+
RUN apk add --no-cache cpio findutils git
7+
WORKDIR /src
8+
9+
FROM base AS deps
10+
RUN --mount=type=bind,target=.,rw \
11+
--mount=type=cache,target=/src/node_modules \
12+
yarn install && mkdir /vendor && cp yarn.lock /vendor
13+
14+
FROM scratch AS vendor-update
15+
COPY --from=deps /vendor /
16+
17+
FROM deps AS vendor-validate
18+
RUN --mount=type=bind,target=.,rw <<EOT
19+
set -e
20+
git add -A
21+
cp -rf /vendor/* .
22+
if [ -n "$(git status --porcelain -- yarn.lock)" ]; then
23+
echo >&2 'ERROR: Vendor result differs. Please vendor your package with "docker buildx bake vendor-update"'
24+
git status --porcelain -- yarn.lock
25+
exit 1
26+
fi
27+
EOT
28+
29+
FROM deps AS build
30+
RUN --mount=type=bind,target=.,rw \
31+
--mount=type=cache,target=/src/node_modules \
32+
yarn run build && mkdir /out && cp -Rf dist /out/
33+
34+
FROM scratch AS build-update
35+
COPY --from=build /out /
36+
37+
FROM build AS build-validate
38+
RUN --mount=type=bind,target=.,rw <<EOT
39+
set -e
40+
git add -A
41+
cp -rf /out/* .
42+
if [ -n "$(git status --porcelain -- dist)" ]; then
43+
echo >&2 'ERROR: Build result differs. Please build first with "docker buildx bake build"'
44+
git status --porcelain -- dist
45+
exit 1
46+
fi
47+
EOT
48+
49+
FROM deps AS format
50+
RUN --mount=type=bind,target=.,rw \
51+
--mount=type=cache,target=/src/node_modules \
52+
yarn run format \
53+
&& mkdir /out && find . -name '*.ts' -not -path './node_modules/*' | cpio -pdm /out
54+
55+
FROM scratch AS format-update
56+
COPY --from=format /out /
57+
58+
FROM deps AS lint
59+
RUN --mount=type=bind,target=.,rw \
60+
--mount=type=cache,target=/src/node_modules \
61+
yarn run lint
62+
63+
FROM deps AS test
64+
ENV RUNNER_TEMP=/tmp/github_runner
65+
ENV RUNNER_TOOL_CACHE=/tmp/github_tool_cache
66+
RUN --mount=type=bind,target=.,rw \
67+
--mount=type=cache,target=/src/node_modules \
68+
yarn run test --coverageDirectory=/tmp/coverage
69+
70+
FROM scratch AS test-coverage
71+
COPY --from=test /tmp/coverage /

0 commit comments

Comments
 (0)