Merge pull request #166 from seasonedcc/no-implicit-any-combinators #652
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.9.1 | |
- name: Install Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: vx.x.x | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v3 | |
- name: ⚡ Run tests | |
run: | | |
deno task test | |
- name: 📥 Generate npm package | |
run: | | |
deno task build-npm |