diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-07-11 20:58:57 +0200 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-07-11 20:58:57 +0200 |
commit | 4b639b1c100fc579922457bd4d3e9f52d29749e4 (patch) | |
tree | 30be3bfeaafa121a4d6d40941ef4f549f759ec71 /.github/workflows/integration.yml | |
parent | 2f1aff4dc5115232b16faf20e85ac4a90677661a (diff) | |
download | homer-4b639b1c100fc579922457bd4d3e9f52d29749e4.tar.gz homer-4b639b1c100fc579922457bd4d3e9f52d29749e4.tar.zst homer-4b639b1c100fc579922457bd4d3e9f52d29749e4.zip |
Uniform workflow yaml style
Diffstat (limited to '.github/workflows/integration.yml')
-rw-r--r-- | .github/workflows/integration.yml | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 257f758..258e77e 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml | |||
@@ -20,12 +20,19 @@ jobs: | |||
20 | # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | 20 | # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ |
21 | 21 | ||
22 | steps: | 22 | steps: |
23 | - uses: actions/checkout@v3 | 23 | - |
24 | - name: Use Node.js ${{ matrix.node-version }} | 24 | name: Checkout |
25 | uses: actions/checkout@v3 | ||
26 | - | ||
27 | name: Use Node.js ${{ matrix.node-version }} | ||
25 | uses: actions/setup-node@v2 | 28 | uses: actions/setup-node@v2 |
26 | with: | 29 | with: |
27 | node-version: ${{ matrix.node-version }} | 30 | node-version: ${{ matrix.node-version }} |
28 | cache: 'yarn' | 31 | cache: 'yarn' |
29 | - run: yarn install | 32 | - |
30 | - run: yarn lint | 33 | name: install dependencies |
34 | run: yarn install | ||
35 | - | ||
36 | name: Check code style & potentential issues | ||
37 | run: yarn lint | ||
31 | 38 | ||