diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7b13876..c8fe780 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [18.x] steps: - name: Checkout Git repo @@ -25,8 +25,8 @@ jobs: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} - - run: yarn install + - run: npm install - - run: yarn build + - run: npm run build env: CI: true diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5c32e51..7e44447 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} - name: Install dependencies - run: yarn install + run: npm install - name: Run linters - run: yarn lint + run: npm run lint