Skip to content

Commit

Permalink
cleanup (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
schickling authored Sep 22, 2023
1 parent 4f1915b commit 970697c
Show file tree
Hide file tree
Showing 17 changed files with 9,504 additions and 8,172 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ci

on:
push:
branches: ['**']
pull_request:
branches: ['**']

jobs:
starter-vite-tsc:
strategy:
matrix:
node-version: [16, 18, 20]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install
working-directory: starter-vite-tsc
- run: pnpm tsc
working-directory: starter-vite-tsc
- run: pnpm build
working-directory: starter-vite-tsc
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"author": "Michael Arnaldi <arnaldimichael@gmail.com>",
"license": "MIT",
"devDependencies": {
"typescript": "https://cdn.jsdelivr.net/npm/@tsplus/installer@0.0.156/compiler/typescript.tgz"
"typescript": "^5.2.2"
}
}
Loading

0 comments on commit 970697c

Please sign in to comment.