Skip to content

fix: remove committed test artifacts and gitignore them #3798

fix: remove committed test artifacts and gitignore them

fix: remove committed test artifacts and gitignore them #3798

Workflow file for this run

name: Tests
on:
push:
pull_request:
branches:
- 'test/setup'
# - '*'
# - '*/*'
# - '**'
# - '!master'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.0
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18.16.0
cache: 'pnpm'
- name: Install modules
run: pnpm install --frozen-lockfile
# - name: Run lint
# run: yarn run lint
# - name: Run tests
# run: yarn run test