This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
Refactor to v1beta2 (#19) #56
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: Run Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18.x" | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run static checks | |
run: npm run allstatic | |
# Tests require to run on replit, we'll add it to PRs | |
# via custom github webhooks | |
# - name: Run Tests | |
# run: npm run test |