diff options
| author | XhmikosR <[email protected]> | 2019-09-26 16:25:26 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-06-10 08:19:51 +0300 |
| commit | e7604207a185f506fe75fdc53d2a58ab37591ae2 (patch) | |
| tree | 5f6d42a517d48317c735ed1a623b4c4b61c1b4ba /.github/workflows/js.yml | |
| parent | 32d18d199c8bc5fe6f993bce53e8d793c5523fca (diff) | |
| download | bootstrap-e7604207a185f506fe75fdc53d2a58ab37591ae2.tar.xz bootstrap-e7604207a185f506fe75fdc53d2a58ab37591ae2.zip | |
Split GitHub Actions.
Everything should be faster now. Also, we can restart a failed workflow and not the whole thing like before.
Diffstat (limited to '.github/workflows/js.yml')
| -rw-r--r-- | .github/workflows/js.yml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml new file mode 100644 index 000000000..2d0c72b6b --- /dev/null +++ b/.github/workflows/js.yml @@ -0,0 +1,48 @@ +name: JS Tests +on: [push, pull_request] +env: + CI: true + +jobs: + run: + name: Node ${{ matrix.node }} + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + node: [10, 12] + + steps: + - name: Clone repository + uses: actions/checkout@v2 + + - name: Set Node.js version + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node }} + + - name: Set up npm cache + uses: actions/cache@v2 + with: + path: ~/.npm + key: ${{ runner.os }}-node-v${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}} + restore-keys: | + ${{ runner.OS }}-node-v${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} + ${{ runner.OS }}-node-v${{ matrix.node }}- + + - name: Install npm dependencies + run: npm ci + + - name: Run dist + run: npm run js + + - name: Run JS tests + run: npm run js-test + + - name: Run Coveralls + uses: coverallsapp/github-action@master + if: matrix.node == 10 + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" + path-to-lcov: "./js/coverage/lcov.info" |
