Skip to content

Commit ee908b0

Browse files
authored
Merge pull request #5 from kenmuse/kenmuse/corrections
2 parents 4fef58e + 9ad19d7 commit ee908b0

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2024 RedGate and contributors
3+
Copyright (c) 2024 Redgate and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The `setup-flyway` action will download and set up a requested version of the Fl
1515
- `edition` - The edition of the Flyway CLI to set up. Can specify `community` or `enterprise`. **Default:** `community`.
1616

1717
> [!NOTE]
18-
> The Flyway CLI supports 'windows-x64', 'linux-x64', 'macosx-arm64', 'macosx-x64', and 'linux-alpine-x64' platforms.
18+
> The Flyway CLI supports `windows-x64`, `linux-x64`, `macosx-arm64`, `macosx-x64`, and `linux-alpine-x64` platforms.
1919
> For all other platforms, the Java version of the Flyway CLI should be used.
2020
2121
### Basic Configuration

action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: 'Setup RedGate Flyway'
1+
name: 'Setup Redgate Flyway'
22
description: 'Set up a specific version of Flyway and add the
33
command-line tools to the PATH'
4-
author: 'RedGate'
4+
author: 'Redgate'
55
inputs:
66
version:
77
description: The version specification

package.json

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
{
22
"name": "setup-flyway",
33
"version": "0.1.0",
4-
"description": "Setup RedGate Flyway for Actions",
4+
"description": "Setup Redgate Flyway for Actions",
55
"main": "dist/index.mjs",
66
"type": "module",
77
"scripts": {
88
"build": "yarn node ./esbuild.mjs",
99
"format": "yarn prettier --no-error-on-unmatched-pattern --config ./.prettierrc.yml --write \"**/*.{mts,ts,yml,yaml}\"",
1010
"format:check": "yarn prettier --no-error-on-unmatched-pattern --config ./.prettierrc.yml --check \"**/*.{mts,ts,yml,yaml}\"",
11-
"lint": "yarn eslint",
12-
"lint:fix": "yarn eslint --fix",
11+
"lint:check": "yarn eslint",
12+
"lint": "yarn eslint --fix",
1313
"prerelease": "yarn run build",
1414
"release": "git add -f dist/index.js dist/cleanup.js",
15-
"test": "yarn jest --config jest.config.ts",
16-
"test-esm": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --config jest.config.ts",
17-
"test-cmd1": "mkdir -p /tmp/runner/cache && INPUT_VERSION=\"10.0.0\" INPUT_ARCHITECTURE=x64 RUNNER_TOOL_CACHE=/tmp/runner/cache RUNNER_TEMP=/tmp/runner/tmp node dist/setup.mjs",
18-
"test-cmd2": "mkdir -p /tmp/runner/cache && INPUT_VERSION=\"latest\" INPUT_ARCHITECTURE=x64 RUNNER_TOOL_CACHE=/tmp/runner/cache RUNNER_TEMP=/tmp/runner/tmp node dist/setup.mjs",
19-
"test-cmd3": "mkdir -p /tmp/runner/cache && INPUT_VERSION=\"<10.5\" INPUT_ARCHITECTURE=x64 RUNNER_TOOL_CACHE=/tmp/runner/cache RUNNER_TEMP=/tmp/runner/tmp node dist/setup.mjs",
20-
"test-cmd4": "mkdir -p /tmp/runner/cache && INPUT_VERSION=\"10.8\" INPUT_ARCHITECTURE=java RUNNER_TOOL_CACHE=/tmp/runner/cache RUNNER_TEMP=/tmp/runner/tmp node dist/setup.mjs"
15+
"test": "yarn jest --config jest.config.ts"
2116
},
2217
"repository": "git+https://github.com/kenmuse/setup-flyway.git",
2318
"keywords": [

0 commit comments

Comments
 (0)