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.yml15
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