We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0c4728 commit a6231d4Copy full SHA for a6231d4
.github/workflows/ci.yml
@@ -1,5 +1,3 @@
1
-name: CI
2
-
3
on:
4
pull_request:
5
push:
@@ -9,8 +7,7 @@ jobs:
9
7
build:
10
8
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v3
13
+ - uses: actions/checkout@v4
14
- uses: actions/cache@v3
15
id: yarn-cache
16
with:
@@ -24,12 +21,9 @@ jobs:
24
21
yarn test:types
25
22
yarn lint
26
23
27
- deploy-docs:
28
- if: github.ref == 'refs/heads/master'
29
- runs-on: ubuntu-latest
30
- steps:
31
- name: Trigger deploy
+ if: github.ref == 'refs/heads/master'
32
env:
33
deploy_url: ${{ secrets.RENDER_DEPLOY_HOOK_URL }}
34
run: |
35
- curl -X GET "$deploy_url"
+ curl "$deploy_url"
0 commit comments