diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..c2524eacb --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,23 @@ +name: Node.js CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: '14.x' + - run: npm install -g gulp + - run: npm install -g lerna + - run: cd packages/splitview + - run: npm run build + - run: cd ../../ + - run: npm test + env: + CI: true