Skip to content

Commit 5092809

Browse files
authored
Merge pull request #10 from DadaDaMotha/dev
Updating to sveltekit 1.0 using vite 4
2 parents 65067ae + 8b13beb commit 5092809

18 files changed

+1158
-3348
lines changed

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Build package"
2+
3+
on:
4+
push:
5+
branches:
6+
- dev
7+
jobs:
8+
build:
9+
runs-on: ubuntu/latest
10+
strategy:
11+
matrix:
12+
node-version:
13+
- '14.x'
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- name: Install dependencies
21+
run: npm install
22+
23+
- run: npm run check
24+
- run: npm run package
25+
- run: npm test

0 commit comments

Comments
 (0)