We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d9d1fd commit 616fa46Copy full SHA for 616fa46
.github/workflows/test.yml
@@ -1,27 +1,20 @@
1
name: basic-web-app
2
3
on:
4
-
5
-push:
6
7
-branches:
8
9
-- main
+ push:
+ branches:
+ - main
10
11
jobs:
12
13
-query_tests:
14
+ query_tests:
15
runs-on: ubuntu-latest
16
17
name: query_tests
18
19
steps:
+ - uses: actions/checkout@v3
20
21
- - uses: actions/checkout@v3
22
23
- - uses: bahmutov/npm-install@v1
+ - uses: bahmutov/npm-install@v1
24
25
- - run: npm run lint (Run ESLint)
+ - run: npm run lint (Run ESLint)
26
27
- - run: npm run test (Run Jest)
+ - run: npm run test (Run Jest)
0 commit comments