Skip to content

Commit 6810bf3

Browse files
committed
Merge branch 'cbeauchesne/push-event' of github.com:DataDog/ensure-ci-success into cbeauchesne/push-event
2 parents 0079b59 + 656f1e9 commit 6810bf3

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/tmp.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: tmp
2+
3+
on:
4+
push:
5+
6+
concurrency:
7+
group: tmp-${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
permissions:
11+
checks: read
12+
statuses: read
13+
contents: read
14+
15+
jobs:
16+
build-and-test:
17+
if: '!cancelled()'
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Checkout code
21+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
22+
23+
- name: Setup Node.js
24+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
25+
with:
26+
node-version: '20'
27+
28+
- name: Install dependencies
29+
run: npm install
30+
31+
- name: Test the action on itself
32+
uses: ./

0 commit comments

Comments
 (0)