aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/integration.yml
diff options
context:
space:
mode:
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