[READ-ONLY] Mirror of https://github.com/probablykasper/sveltekit-template.
svelte sveltekit template typescript
0

Configure Feed

Select the types of activity you want to include in your feed.

Add github action

Kasper (Jun 26, 2022, 11:44 PM +0200) 6044ac56 8a8fbff6

+28
+28
.github/workflows/test.yml
··· 1 + name: Test 2 + on: 3 + push: 4 + branches: 5 + - '*' 6 + pull_request: 7 + workflow_dispatch: 8 + 9 + jobs: 10 + test: 11 + strategy: 12 + fail-fast: false 13 + platform: ubuntu-latest 14 + runs-on: ${{ matrix.platform }} 15 + steps: 16 + - name: Checkout repository 17 + uses: actions/checkout@v2 18 + 19 + - name: Node.js setup 20 + uses: actions/setup-node@v1 21 + with: 22 + node-version: 16 23 + 24 + - run: npm install 25 + 26 + - run: npm run build 27 + 28 + - run: npm run lint