mirror of https://github.com/sveltejs/svelte
parent
ff6ce725bf
commit
cf5401c32b
@ -0,0 +1,20 @@
|
||||
name: Browser Test
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
Tests:
|
||||
runs-on: ${{ matrix.os }}
|
||||
timeout-minutes: 15
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [8, 10, 12, 14]
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
cache: npm
|
||||
- run: npm install
|
||||
- run: npm test:browser
|
||||
env:
|
||||
CI: true
|
||||
Loading…
Reference in new issue