blob: eed26af116a29ea477fdeea8a280d0f4a44732ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
name: Node
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: npm test
- run: npm run lint
- run: npm run build
- run: npm run build:ssr
|