Skip to content

ci: bump mocha from 10.7.0 to 10.7.3 #1027

ci: bump mocha from 10.7.0 to 10.7.3

ci: bump mocha from 10.7.0 to 10.7.3 #1027

Workflow file for this run

name: Actions
on:
pull_request:
branches:
- master
- main
jobs:
install:
name: Install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: |
npm ci --omit=optional
npm install --no-save warframe-worldstate-parser@^4.x warframe-worldstate-data@^2.x
- uses: actions/cache/save@v4
with:
path: |
./node_modules/**/*
key: node-ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
lint:
needs: install
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- uses: actions/cache/restore@v4
with:
path: |
./node_modules/**/*
key: node-ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- name: Run linters
run: npm run lint
- name: Run commitlint
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
test:
name: Test
runs-on: ubuntu-latest
needs: [lint]
strategy:
matrix:
node-version: ['lts/*', '20', '18']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache/restore@v4
with:
path: |
./node_modules/**/*
key: node-ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- run: npm test
env:
CI: true
parallel: true
coverage:
name: Coverage
runs-on: ubuntu-latest
needs: [lint, install]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- uses: actions/cache/restore@v4
with:
path: |
./node_modules/**/*
key: node-ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- run: npm test
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master