Skip to content

feat: rewrite into ESM #929

feat: rewrite into ESM

feat: rewrite into ESM #929

Workflow file for this run

name: Actions
on:
pull_request:
branches:
- master
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install Dependencies
run: |
npm ci --omit=optional
npm install --no-save warframe-worldstate-parser@^2.x warframe-worldstate-data@^1.x
- name: Run linters
run: npm run lint
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 }}
- name: Install Dependencies
run: |
npm ci --omit=optional
npm install --no-save warframe-worldstate-parser@^2.x warframe-worldstate-data@^1.x
- run: npm test
env:
CI: true
parallel: true
coverage:
name: Coverage
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install Dependencies
run: |
npm ci --omit=optional
npm install --no-save warframe-worldstate-parser@^2.x warframe-worldstate-data@^1.x
- run: npm test
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GH_TOKEN }}