Files
wkc-website/.github/workflows/main.yml
Lucid d1f45b0c4f
Some checks failed
Vercel Preview Deployment / Deploy-Preview (pull_request) Failing after 1m17s
Node.js CI / build (20.x) (pull_request) Successful in 3m0s
Node.js CI / build (22.x) (pull_request) Successful in 2m59s
Fix actions strategy
2025-12-03 22:14:19 -05:00

54 lines
1.7 KiB
YAML

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
# Trigger the workflow on push or pull request,
push:
branches: [main, stable]
pull_request:
# These types of PRs
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: "Base requirements"
run: |
# packages
apk update && apk add --no-cache git docker docker-compose nodejs gpg openssh npm ansible
# ansible collections
ansible-galaxy collection install community.general --force
ansible-galaxy collection install ansible.posix --force
- uses: actions/checkout@v4
# Corepack
- name: Install Corepack
run: npm install -g corepack
- name: "Enable Corepack"
run: corepack enable
- name: "Install Yarn"
run: corepack prepare yarn@4.9.2 --activate
# YARN
- name: "Install Dependencies"
run: yarn install # will run `yarn install` command
#- uses: borales/actions-yarn@v3.0.0
# with:
# cmd: test # will run `yarn test` command
#- uses: borales/actions-yarn@v3.0.0
# with:
# cmd: type-check # will run `yarn type-check` command
- name: "Lint Repo"
run: yarn lint # will run `yarn lint` command
- name: "Build Code"
run: yarn run build # will run `yarn build` command