Skip to content

Commit

Permalink
ci: don't run on push
Browse files Browse the repository at this point in the history
There's no real reason to run on push as we're not using any caching.
  • Loading branch information
dundargoc committed Feb 18, 2024
1 parent 3c0a0b7 commit 5c5771b
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
name: Run tree-sitter tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
name: Tree-sitter tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- name: Install Dependencies
run: npm install

- name: Run tests
run: npm test
- run: npm install
- run: npm test

0 comments on commit 5c5771b

Please sign in to comment.