Skip to content

Commit

Permalink
Bump Dependencies (#1585)
Browse files Browse the repository at this point in the history
* Bump Dependencies

* npm run format

* update peter-evans/create-pull-request to v6

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: campersau <[email protected]>
  • Loading branch information
github-actions[bot] and campersau authored Feb 18, 2024
1 parent 3efb148 commit 55aa194
Show file tree
Hide file tree
Showing 17 changed files with 329 additions and 214 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
- run: npm ci
- run: |
body="$(npm run bumpdependencies)"
body="${body#"${body%%[![:space:]]*}"}"
body="${body%"${body##*[![:space:]]}"}"
echo "$body"
echo "body<<EOF" >> $GITHUB_OUTPUT
echo "$body" >> $GITHUB_OUTPUT
Expand All @@ -32,11 +34,14 @@ jobs:
- run: npm install

- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
commit-message: Bump Dependencies
commit-message: |
Bump Dependencies
${{ steps.bumpdependencies.outputs.body }}
title: Bump Dependencies
body: |
```
Expand Down
1 change: 1 addition & 0 deletions clicktests/spec.authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const environment = require('./environment')({

describe('[AUTHENTICATION]', () => {
before('Environment init without temp folder', () => environment.init());

after('Environment stop', () => environment.shutdown());

it('Open home screen should show authentication dialog', async function () {
Expand Down
1 change: 1 addition & 0 deletions clicktests/spec.bare.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ describe('[BARE]', () => {
await environment.init();
await environment.createRepos(testRepoPaths, [{ bare: true }]);
});

after('Environment stop', () => environment.shutdown());

it('Open path screen', () => {
Expand Down
1 change: 1 addition & 0 deletions clicktests/spec.branches.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ describe('[BRANCHES]', () => {
await environment.init();
await environment.createRepos(testRepoPaths, [{ bare: false }]);
});

after('Environment stop', () => environment.shutdown());

it('Open path screen', () => {
Expand Down
1 change: 1 addition & 0 deletions clicktests/spec.commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ describe('[COMMANDS]', () => {
await environment.init();
await environment.createRepos(testRepoPaths, [{ bare: false }]);
});

after('Environment stop', () => environment.shutdown());

it('Open path screen', () => {
Expand Down
2 changes: 2 additions & 0 deletions clicktests/spec.discard.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ describe('[DISCARD - noWarn]', () => {
await environment.init();
await environment.createRepos(testRepoPaths, [{ bare: false }]);
});

after('Environment stop', () => environment.shutdown());

it('Open path screen', () => {
Expand All @@ -58,6 +59,7 @@ describe('[DISCARD - withWarn]', () => {
await environment.init();
await environment.createRepos(testRepoPaths, [{ bare: false }]);
});

after('Environment stop', () => environment.shutdown());

it('Open path screen', () => {
Expand Down
1 change: 1 addition & 0 deletions clicktests/spec.generic.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ describe('[GENERIC]', () => {
await rimraf(testRepoPaths[1]);
await mkdirp(testRepoPaths[1]);
});

after('Environment stop', () => environment.shutdown());

it('Open repo screen', () => {
Expand Down
1 change: 1 addition & 0 deletions clicktests/spec.load-ahead.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ describe('[LOAD-AHEAD]', () => {
await environment.init();
await environment.createRepos(testRepoPaths, [{ bare: false }]);
});

after('Environment stop', () => environment.shutdown());

it('Open path screen', () => {
Expand Down
1 change: 1 addition & 0 deletions clicktests/spec.no-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ describe('[NO-HEADER]', () => {
await environment.init();
await environment.createRepos(testRepoPaths, [{ bare: false }]);
});

after('Environment stop', () => environment.shutdown());

it('Open path screen', async () => {
Expand Down
1 change: 1 addition & 0 deletions clicktests/spec.remotes.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ describe('[REMOTES]', () => {
await rimraf(testRepoPaths[2]); // clean clone test dir
await mkdirp(testRepoPaths[2]); // create clone test dir
});

after('Environment stop', () => environment.shutdown());

it('Open path screen', () => {
Expand Down
1 change: 1 addition & 0 deletions clicktests/spec.stash.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ describe('[STASH]', () => {
await environment.init();
await environment.createRepos(testRepoPaths, [{ bare: false, initCommits: 1 }]);
});

after('Environment stop', () => environment.shutdown());

it('Open path screen', () => {
Expand Down
1 change: 1 addition & 0 deletions clicktests/spec.submodules.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe('[SUMBODULES]', () => {
{ bare: false },
]);
});

after('Environment stop', () => environment.shutdown());

it('Open path screen', () => {
Expand Down
Loading

0 comments on commit 55aa194

Please sign in to comment.