Skip to content

Commit beff61c

Browse files
authored
Update all dependencies (#174)
1 parent bf4b1ce commit beff61c

File tree

14 files changed

+567
-13774
lines changed

14 files changed

+567
-13774
lines changed

.eslintrc.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,4 @@ module.exports = {
2424
'plugin:@typescript-eslint/recommended',
2525
'plugin:prettier/recommended',
2626
],
27-
rules: {
28-
'@typescript-eslint/camelcase': 'off',
29-
'@typescript-eslint/no-non-null-assertion': 'off',
30-
}
3127
};

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/example-workflow.yaml

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,33 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
name: 'examples'
16+
1517
on:
1618
push:
1719
branches:
18-
- example
19-
20-
name: Deploy to Google App Engine
20+
- 'example'
21+
pull_request:
22+
branches:
23+
- 'example'
2124

2225
jobs:
2326
deploy:
24-
runs-on: ubuntu-latest
27+
runs-on: 'ubuntu-latest'
2528
steps:
26-
- name: Checkout
27-
uses: actions/checkout@v2
29+
- uses: 'actions/checkout@v2'
30+
31+
- uses: 'google-github-actions/auth@main'
32+
with:
33+
workload_identity_provider: '${{ secrets.WIF_PROVIDER_NAME }}'
34+
service_account: '${{ secrets.APPENGINE_DEPLOY_SA_EMAIL }}'
2835

29-
- name: Deploy to App Engine
30-
id: deploy
31-
uses: google-github-actions/[email protected]
32-
with:
33-
deliverables: example-app/app.yaml
34-
project_id: ${{ secrets.GCP_PROJECT }}
35-
credentials: ${{ secrets.GCP_SA_KEY }}
36+
- id: 'deploy'
37+
name: 'deploy'
38+
uses: 'google-github-actions/[email protected]'
39+
with:
40+
deliverables: 'example-app/app.yaml'
41+
project_id: '${{ secrets.GCP_PROJECT }}'
3642

37-
- name: Show Output
38-
run: echo ${{ steps.deploy.outputs.url }}
43+
- name: 'show output'
44+
run: 'echo ${{ steps.deploy.outputs.url }}'

.github/workflows/label.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
on: pull_request_target
1+
name: 'label'
2+
3+
on: 'pull_request_target'
24

35
jobs:
46
apply-label:
5-
if: github.event.pull_request.head.repo.full_name != github.repository
6-
runs-on: ubuntu-latest
7+
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
8+
runs-on: 'ubuntu-latest'
79
steps:
8-
- uses: actions/github-script@v3
10+
- uses: 'actions/github-script@v3'
911
with:
10-
github-token: ${{secrets.GITHUB_TOKEN}}
11-
script: |
12+
github-token: '${{ secrets.GITHUB_TOKEN }}'
13+
script: |-
1214
github.issues.addLabels({
1315
issue_number: context.issue.number,
1416
owner: context.repo.owner,
File renamed without changes.

.prettierrc.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ module.exports = {
1818
arrowParens: 'always',
1919
bracketSpacing: true,
2020
endOfLine: 'auto',
21-
jsxBracketSameLine: true,
2221
jsxSingleQuote: true,
23-
printWidth: 80,
22+
printWidth: 100,
2423
quoteProps: 'consistent',
2524
semi: true,
2625
singleQuote: true,

0 commit comments

Comments
 (0)