Update .github/workflows/main.yml
All checks were successful
Node.js CI / build (18.x) (pull_request) Successful in 1m0s
Node.js CI / build (20.x) (pull_request) Successful in 1m1s
Node.js CI / build (22.x) (pull_request) Successful in 1m1s

This commit is contained in:
2025-08-27 23:41:34 +00:00
parent 4164ff61cf
commit 1077c53e0e

View File

@@ -13,50 +13,42 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-24.04
strategy: strategy:
matrix: matrix:
node-version: [18.x, 20.x, 22.x] node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
# NPM - name: "Base requirements"
# - name: Use Node.js ${{ matrix.node-version }} run: |
# uses: actions/setup-node@v2 # packages
# with: apk update && apk add --no-cache git docker docker-compose nodejs gpg openssh npm ansible
# node-version: ${{ matrix.node-version }} # ansible collections
# cache: 'npm' ansible-galaxy collection install community.general --force
# - run: npm i ansible-galaxy collection install ansible.posix --force
# - run: npm run lint
# - run: npm run build
# # - run: npm run start
# - run: npm run test
# Corepack # Corepack
- name: Enable Corepack - name: Install Corepack
run: npm install -g corepack
- name: "Enable Corepack"
run: corepack enable run: corepack enable
- name: "Install Yarn"
- name: Enable Corepack
run: corepack prepare yarn@4.9.2 --activate run: corepack prepare yarn@4.9.2 --activate
# YARN # YARN
- uses: borales/actions-yarn@v4 - name: "Install Dependencies"
with: run: yarn install # will run `yarn install` command
cmd: install --immutable # will run `yarn install` command
#- uses: borales/actions-yarn@v3.0.0 #- uses: borales/actions-yarn@v3.0.0
# with: # with:
# cmd: test # will run `yarn test` command # cmd: test # will run `yarn test` command
#- uses: borales/actions-yarn@v3.0.0 #- uses: borales/actions-yarn@v3.0.0
# with: # with:
# cmd: type-check # will run `yarn type-check` command # cmd: type-check # will run `yarn type-check` command
- uses: borales/actions-yarn@v4 - name: "Lint Repo"
with: run: yarn lint # will run `yarn lint` command
cmd: lint # will run `yarn lint` command - name: "Build Code"
- uses: borales/actions-yarn@v4 run: yarn run build # will run `yarn build` command
with:
cmd: build # will run `yarn build` command
- uses: borales/actions-yarn@v4
with:
cmd: build # will run `yarn start` command