Skip to content

Commit 929a76c

Browse files
committed
feat: add github workflow for ci
1 parent 00692c4 commit 929a76c

827 files changed

Lines changed: 76341 additions & 13403 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: ci
3+
on: [push]
4+
jobs:
5+
build:
6+
name: Test, lint and build
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: actions/setup-node@v1
11+
with:
12+
node-version: 12.x
13+
- run: npm ci
14+
- run: npm test
15+
- run: npm run lint
16+
- run: npm run build

node_modules/@actions/core/package.json

Lines changed: 22 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/exec/package.json

Lines changed: 22 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/io/package.json

Lines changed: 19 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/tool-cache/package.json

Lines changed: 33 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)