diff --git a/.changeset/great-apricots-occur.md b/.changeset/great-apricots-occur.md new file mode 100644 index 0000000..903c782 --- /dev/null +++ b/.changeset/great-apricots-occur.md @@ -0,0 +1,5 @@ +--- +"cachu": patch +--- + +ci: remove broken `test` workflow diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index c085ec7..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: CI - -on: - push: - branches: [ dev ] - pull_request: - branches: [ dev ] - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [ 18.x ] - - steps: - - uses: actions/checkout@v2 - - name: Setup Node.js - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: | - npm ci - npm test