Skip to content

Commit

Permalink
removed token from config
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelaguiar committed Dec 19, 2023
1 parent e250aaa commit ab02217
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.0']
php: ["8.0"]
name: Pest - PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: "8.0"
extensions: soap, bcmath, pdo_sqlite, intl
- uses: ramsey/composer-install@v1
with:
Expand All @@ -68,7 +68,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '15'
node-version: "15"
- name: Install dependencies
run: yarn install
- name: Run Jest
Expand All @@ -80,7 +80,6 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
flags: jest
file: test-results/jest/clover.xml

# phpcs:
# runs-on: ubuntu-latest
# name: PHP Style Fixer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: Publish new release

on:
release:
types: [ published ]
types: [published]

jobs:
release:
name: Create NPM release
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.target_commitish }}
- name: Use Node.js 12
Expand Down
1 change: 0 additions & 1 deletion config/laravel-echo-api-gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"connection" => [
"key" => env("AWS_ACCESS_KEY_ID"),
"secret" => env("AWS_SECRET_ACCESS_KEY"),
// "token" => env("AWS_SESSION_TOKEN"),
"region" => env("AWS_DEFAULT_REGION", "us-east-1"),
],

Expand Down

0 comments on commit ab02217

Please sign in to comment.