diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 26689e3..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Test -on: - push: - branches: - - main - pull_request: - branches: - - main -jobs: - test: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [21] # You can specify other Node.js versions here - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Set up Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - - - name: Install dependencies - run: yarn install - - - name: Run tests - run: yarn test