diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..aacb3b4 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,23 @@ +--- +name: Test + +on: + push: + +jobs: + test: + runs-on: ubuntu-latest + container: + image: ubuntu:mantic + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: update repos + run: apt-get update + - name: install node dependencies + run: apt-get install -y node-postcss-cli node-browserify uglifyjs make + + - name: create templates + run: make all +