Skip to content

Commit

Permalink
ci: fix getting next version
Browse files Browse the repository at this point in the history
  • Loading branch information
asartalo committed Jul 7, 2021
1 parent 30ad1c4 commit 419f052
Show file tree
Hide file tree
Showing 7 changed files with 275 additions and 18 deletions.
20 changes: 19 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module.exports = {
],
},
{
files: 'cypress/**/*',
files: ['cypress/**/*', 'scripts/**/*'],
rules: {
'import/no-extraneous-dependencies': 'off',
},
Expand All @@ -87,6 +87,24 @@ module.exports = {
project: './cypress/tsconfig.json',
},
},
{
files: 'scripts/**/*.ts',
extends: [
'airbnb-typescript',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
plugins: [
'@typescript-eslint',
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './scripts/tsconfig.json',
},
rules: {
'import/no-extraneous-dependencies': 'off',
},
},
{
files: './*.js',
rules: {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
id: nextVersion
run: echo "::set-output name=value::$(npm run --silent release-version)"

- run: echo "${{ steps.nextVersion.outputs.value }} ${{ steps.currentVersion.outputs.value }}"
- run: echo "${{ steps.currentVersion.outputs.value }} vs ${{ steps.nextVersion.outputs.value }}"

- name: Should We Release?
id: shouldRelease
Expand Down
10 changes: 0 additions & 10 deletions CHANGELOG.md

This file was deleted.

Loading

0 comments on commit 419f052

Please sign in to comment.