Skip to content

Commit

Permalink
fix: remove windows support from CI/CD checks (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs authored May 1, 2021
1 parent 76b28c9 commit 945f8ff
Show file tree
Hide file tree
Showing 6 changed files with 272 additions and 290 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
parser: '@typescript-eslint/parser',
extends: ['plugin:@typescript-eslint/recommended', 'prettier/@typescript-eslint', 'plugin:prettier/recommended'],
extends: ['plugin:@typescript-eslint/recommended', 'prettier', 'plugin:prettier/recommended'],
parserOptions: {
ecmaVersion: 2019,
sourceType: 'module',
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
paths:
- '.github/workflows/**'
- 'dist/**'
- 'src/**'
- 'action.yml'
Expand All @@ -13,6 +14,7 @@ on:
branches:
- main
paths:
- '.github/workflows/**'
- 'dist/**'
- 'src/**'
- 'action.yml'
Expand All @@ -24,7 +26,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
os: [macos-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -43,7 +45,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
os: [macos-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -65,7 +67,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
os: [macos-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ See the [ArgoCD CLI documenation](https://argoproj.github.io/argo-cd/user-guide/
```yml
- uses: clowdhaus/argo-cd-action/@main
with:
version: 1.8.4
version: 2.0.0
command: version
options: --client
```
Expand Down
6 changes: 3 additions & 3 deletions dist/index.js

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,25 @@
"release": "semantic-release"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/core": "^1.2.7",
"@actions/exec": "^1.0.4",
"@actions/tool-cache": "^1.6.1",
"@octokit/auth-action": "^1.3.2",
"@octokit/rest": "^18.5.2",
"@octokit/rest": "^18.5.3",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"@vercel/ncc": "^0.28.2",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vercel/ncc": "^0.28.4",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prettier-plugin-package": "^1.3.0",
Expand Down
Loading

0 comments on commit 945f8ff

Please sign in to comment.