From bed7abd2c42092b1285abc571fb49f684e8eab9c Mon Sep 17 00:00:00 2001 From: Ulises Gascon Date: Sat, 18 Jan 2025 20:59:06 +0100 Subject: [PATCH] feat: add GitHub CI workflow --- .github/workflows/ci.yml | 42 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..4be3cbe --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,42 @@ +name: CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +permissions: + contents: read + +jobs: + build: + runs-on: ${{ matrix.os }} + + strategy: + fail-fast: false + # TODO: Include Node@22 and Node@23 when https://github.com/yeoman/yo/issues/842 is resolved + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + node: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + exclude: + - os: macos-latest + node: [12, 13, 14, 15] + + steps: + - name: Checkout repository + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Setup Node.js + uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2 + with: + node-version: ${{ matrix.node }} + + - name: Install dependencies + run: npm install + + - name: Install YO + run: npm install -g yo + + - name: Run tests + run: npm test \ No newline at end of file