From 71ae10b5ebeb24b1ccec78328bc7fa6a94e749ae Mon Sep 17 00:00:00 2001 From: "Stefan M." Date: Tue, 8 Oct 2024 07:21:10 +0000 Subject: [PATCH] Remove old ci job --- .github/workflows/ci.yml | 74 ---------------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 19250e8..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,74 +0,0 @@ -name: Continuous Integration - -on: - pull_request: - branches: - - main - push: - branches: - - main - -permissions: - contents: read - -env: - CHECK_VERSION: 0.26.0 - -jobs: - test-typescript: - name: TypeScript Tests - runs-on: ubuntu-latest - - steps: - - name: Checkout - id: checkout - uses: actions/checkout@v4 - - - name: Setup Node.js - id: setup-node - uses: actions/setup-node@v4 - with: - node-version-file: .nvmrc - cache: npm - - - name: Install Dependencies - id: npm-ci - run: npm ci - - - name: Check Format - id: npm-format-check - run: npm run format:check - - - name: Lint - id: npm-lint - run: npm run lint - - - name: Test - id: npm-ci-test - run: npm run ci-test - - test-action: - strategy: - matrix: - # Right now macos-13 is amd64 while macos-14 is aarch64 (M1) - os: [ubuntu-latest, macos-13, macos-14, windows-latest] - runs-on: ${{ matrix.os }} - - steps: - - name: Checkout - id: checkout - uses: actions/checkout@v4 - - - name: Test Local Action - id: test-action - uses: ./ - with: - pkl-version: ${{ env.CHECK_VERSION }} - - - name: Confirm download (unix) - run: pkl --version | grep "Pkl ${{ env.CHECK_VERSION }}" - if: matrix.os != 'windows-latest' - - - name: Confirm download (windows) - run: .github/workflows/Check-Version.ps1 "Pkl ${{ env.CHECK_VERSION }}" - if: matrix.os == 'windows-latest'