diff --git a/.github/workflows/visual-dom-diff.yml b/.github/workflows/visual-dom-diff.yml new file mode 100644 index 0000000..e5a757c --- /dev/null +++ b/.github/workflows/visual-dom-diff.yml @@ -0,0 +1,30 @@ +name: Pull request checks + +on: + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'npm' + + - name: Install npm dependencies + run: npm ci + + - name: Run Prettier check + run: npm run prettier + + - name: Run TSLint + run: npm run tslint + + - name: Build and test + run: npm run build \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 226567d..0000000 --- a/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: node_js -node_js: node -cache: 'npm'