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 7a147b3 commit aea6286Copy full SHA for aea6286
.github/workflows/main.yml
@@ -13,6 +13,22 @@ jobs:
13
build:
14
runs-on: ubuntu-latest
15
16
+ if: github.ref != 'refs/heads/master'
17
+ steps:
18
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
19
+ - uses: actions/checkout@v2
20
+
21
+ - name: Install dependencies
22
+ run: sudo apt-get install -y wait-for-it
23
+ - name: Run tests - latest njs version
24
+ run: ./test.sh latest-njs-oss
25
+ - name: Run tests - stable njs version
26
+ run: ./test.sh oss
27
28
+ build_and_deploy:
29
+ runs-on: ubuntu-latest
30
31
+ if: github.ref == 'refs/heads/main'
32
steps:
33
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
34
- uses: actions/checkout@v2
0 commit comments