From f0393a086156469ba3a9777f327d690fe20f81bc Mon Sep 17 00:00:00 2001 From: sD Date: Thu, 26 Dec 2019 20:28:23 +0100 Subject: CI for webAO? --- .github/workflows/webpack.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/webpack.yml (limited to '.github') diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml new file mode 100644 index 0000000..d8bf90e --- /dev/null +++ b/.github/workflows/webpack.yml @@ -0,0 +1,25 @@ +name: webpack + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.x] + + steps: + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: npm build + run: | + npm ci + npm run build --if-present + env: + CI: true \ No newline at end of file -- cgit