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

Feature/rewrite-to-ts #1

Merged
merged 12 commits into from
Dec 3, 2023
Prev Previous commit
Next Next commit
chore: update github action
chakhsu committed Dec 3, 2023
commit d70e62b0b43eff2fbd830f90cb161a859e5b8c07
8 changes: 2 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -22,20 +22,16 @@ jobs:
steps:
- name: Checkout master
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v2.4.0

- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Install Dependencies
run: pnpm i

- name: Test
run: pnpm test

- name: Clean
run: pnpm clean