Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Research node:test and build a unit & e2e test infrastructure #365

Open
mikenikles opened this issue Aug 8, 2023 · 0 comments
Open

Research node:test and build a unit & e2e test infrastructure #365

mikenikles opened this issue Aug 8, 2023 · 0 comments

Comments

@mikenikles
Copy link
Collaborator

mikenikles commented Aug 8, 2023

Blocked by #366

#364 removed the .github/workflows/test.yml workflow with the following content. FYI in case this comes in handy:

Click to see code
name: Tests

on: pull_request

jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master

  - name: Setup Node.js
    uses: actions/setup-node@v3
    with:
      node-version: 16

  - name: Install pnpm globally
    run: npm install -g pnpm

  - name: Install Dependencies
    run: pnpm install --frozen-lockfile

  - name: Run all tests
    run: pnpm test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant