Prep v0.2.0 #21
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
name: Hardhat Tests | |
on: | |
push: | |
branches: | |
- main # Trigger the workflow on pushes to the main branch | |
tags: | |
- "**" # Trigger the workflow on tags including hierarchical tags like v1.0/beta | |
pull_request: | |
types: [opened, synchronize] # Trigger the workflow when a PR is opened or updated | |
jobs: | |
tests: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install packages | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
- run: npm ci | |
shell: bash | |
- name: Run Tests | |
run: npm run test |