-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Tasks:
- Create a file .github/workflows/test.yml with contents like:
name: Run tests on: pull_request: types: [opened, synchronize, reopened, ready_for_review] push: branches: - main jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install modules run: npm ci - name: Run tests run: npm run test
Reactions are currently unavailable