21 lines
389 B
YAML
21 lines
389 B
YAML
name: Testing
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12.x'
|
|
- run: npm ci
|
|
- run: npm run lint
|
|
- run: npx tslint -c ionic-migration.json -p tsconfig.json
|
|
- run: npm run test:ci
|
|
- run: npm run build:prod
|