@@ -20,24 +20,20 @@ jobs:
2020 runs-on : ubuntu-latest
2121 steps :
2222 - name : 🛑 Cancel Previous Runs
23- 24- with :
25- access_token : ${{ secrets.GITHUB_TOKEN }}
23+ 2624
2725 - name : ⬇️ Checkout repo
2826 uses : actions/checkout@v2
2927
3028 - name : ⎔ Setup node
31- uses : actions/setup-node@v1
29+ uses : actions/setup-node@v2
3230 with :
3331 node-version : ${{ matrix.node }}
3432
3533 - name : 📥 Download deps
3634 uses : bahmutov/npm-install@v1
3735 with :
3836 useLockFile : false
39- env :
40- HUSKY_SKIP_INSTALL : true
4137
4238 - name : ▶️ Run validate script
4339 run : npm run validate
@@ -49,29 +45,25 @@ jobs:
4945 needs : main
5046 runs-on : ubuntu-latest
5147 if :
52- ${{ github.repository == 'kentcdodds /gatsby-remark-embedder' &&
48+ ${{ github.repository == 'MichaelDeBoey /gatsby-remark-embedder' &&
5349 contains('refs/heads/master,refs/heads/beta,refs/heads/next,refs/heads/alpha',
5450 github.ref) && github.event_name == 'push' }}
5551 steps :
5652 - name : 🛑 Cancel Previous Runs
57- 58- with :
59- access_token : ${{ secrets.GITHUB_TOKEN }}
53+ 6054
6155 - name : ⬇️ Checkout repo
6256 uses : actions/checkout@v2
6357
6458 - name : ⎔ Setup node
65- uses : actions/setup-node@v1
59+ uses : actions/setup-node@v2
6660 with :
6761 node-version : 14
6862
6963 - name : 📥 Download deps
7064 uses : bahmutov/npm-install@v1
7165 with :
7266 useLockFile : false
73- env :
74- HUSKY_SKIP_INSTALL : true
7567
7668 - name : 🏗 Run build script
7769 run : npm run build
0 commit comments