aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/integration.yml
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2024-03-11 09:54:09 +0100
committerBastien Wirtz <bastien.wirtz@gmail.com>2024-03-11 10:00:37 +0100
commitbcebb3e67ef546071d4a455ba4661d6a51152871 (patch)
treef88f3c15ee1f6c6c499837972fbdb5cbb4edda49 /.github/workflows/integration.yml
parent5f5a508b6eae6596dd46c09e25dedbc42d433740 (diff)
downloadhomer-bcebb3e67ef546071d4a455ba4661d6a51152871.tar.gz
homer-bcebb3e67ef546071d4a455ba4661d6a51152871.tar.zst
homer-bcebb3e67ef546071d4a455ba4661d6a51152871.zip
Fix CI build
Diffstat (limited to '.github/workflows/integration.yml')
-rw-r--r--.github/workflows/integration.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
index 3177a5e..937bc89 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -22,16 +22,16 @@ jobs:
22 steps: 22 steps:
23 - 23 -
24 name: Checkout 24 name: Checkout
25 uses: actions/checkout@v3 25 uses: actions/checkout@v4
26 - 26 -
27 name: Use Node.js ${{ matrix.node-version }} 27 name: Use Node.js ${{ matrix.node-version }}
28 uses: actions/setup-node@v2 28 uses: actions/setup-node@v4
29 with: 29 with:
30 node-version: ${{ matrix.node-version }} 30 node-version: ${{ matrix.node-version }}
31 cache: 'yarn' 31 cache: 'yarn'
32 - 32 -
33 name: install dependencies 33 name: install dependencies
34 run: yarn install 34 run: yarn install --frozen-lockfile --non-interactive
35 - 35 -
36 name: Check code style & potentential issues 36 name: Check code style & potentential issues
37 run: yarn lint 37 run: yarn lint