Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Merge pull request #2 from replit/package-changes #6

Merge pull request #2 from replit/package-changes

Merge pull request #2 from replit/package-changes #6

Workflow file for this run

name: Run Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
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 Tests
run: npm run test