diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 000000000..be84732cb --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,15 @@ +name: check +on: [push] +jobs: + project-build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js 12 + uses: actions/setup-node@v1 + with: + node-version: 12 + - name: Build using grunt + run: | + npm install --prefix build + grunt --level=ADVANCED --base build --gruntfile build/Gruntfile.js diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 7f31560ab..000000000 --- a/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: node_js -node_js: - - '12' -before_install: npm install -g grunt-cli -before_script: - - cd build -script: - - npm install - - grunt --level=ADVANCED