Skip to content

Commit

Permalink
Correct casing
Browse files Browse the repository at this point in the history
  • Loading branch information
kenmuse authored Jun 6, 2024
1 parent 4fef58e commit 7e1f7aa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2024 RedGate and contributors
Copyright (c) 2024 Redgate and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Setup RedGate Flyway'
name: 'Setup Redgate Flyway'
description: 'Set up a specific version of Flyway and add the
command-line tools to the PATH'
author: 'RedGate'
author: 'Redgate'
inputs:
version:
description: The version specification
Expand Down
13 changes: 4 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,18 @@
{
"name": "setup-flyway",
"version": "0.1.0",
"description": "Setup RedGate Flyway for Actions",
"description": "Setup Redgate Flyway for Actions",
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"build": "yarn node ./esbuild.mjs",
"format": "yarn prettier --no-error-on-unmatched-pattern --config ./.prettierrc.yml --write \"**/*.{mts,ts,yml,yaml}\"",
"format:check": "yarn prettier --no-error-on-unmatched-pattern --config ./.prettierrc.yml --check \"**/*.{mts,ts,yml,yaml}\"",
"lint": "yarn eslint",
"lint:fix": "yarn eslint --fix",
"lint:check": "yarn eslint",
"lint": "yarn eslint --fix",
"prerelease": "yarn run build",
"release": "git add -f dist/index.js dist/cleanup.js",
"test": "yarn jest --config jest.config.ts",
"test-esm": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --config jest.config.ts",
"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",
"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",
"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",
"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"
"test": "yarn jest --config jest.config.ts"
},
"repository": "git+https://github.com/kenmuse/setup-flyway.git",
"keywords": [
Expand Down

0 comments on commit 7e1f7aa

Please sign in to comment.