Skip to content

build(deps-dev): bump yaml-loader from 0.6.0 to 0.8.1 #1154

build(deps-dev): bump yaml-loader from 0.6.0 to 0.8.1

build(deps-dev): bump yaml-loader from 0.6.0 to 0.8.1 #1154

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
test_lint:
runs-on: ubuntu-latest
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- run: npm ci
- name: Don't continue if lint fails.
run: npm run test:lint
test_node:
runs-on: ubuntu-latest
needs: test_lint
strategy:
max-parallel: 1
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm run coverage:ci
env:
CI: true
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-${{ matrix.test_number }}
parallel: true
finish:
needs: test_node
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
trigger_release:
needs:
- finish
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && !contains(toJSON(github.event.commits.*.message), '[skip ci]')
steps:
- name: Dispatch
run: |
curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: token $GH_TOKEN" https://api.github.com/repos/zikeji/node-hypixel/dispatches -d '{"event_type":"release"}' >/dev/null 2>&1
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}