Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/nnivxix/tomodo into feat/hi…
Browse files Browse the repository at this point in the history
…glight-code
  • Loading branch information
nnivxix committed Oct 3, 2024
2 parents 4f3755a + 21533d4 commit b6b961d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on:
- push
- pull_request

jobs:
cache-and-install:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- name: Install dependencies
run: pnpm install
- name: Run Test
run: pnpm test

0 comments on commit b6b961d

Please sign in to comment.