Skip to content

Bump @typescript-eslint/eslint-plugin from 8.16.0 to 8.19.0 #105

Bump @typescript-eslint/eslint-plugin from 8.16.0 to 8.19.0

Bump @typescript-eslint/eslint-plugin from 8.16.0 to 8.19.0 #105

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm run test:ci
- run: npm run build
- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: coverage/ngxs-message-plugin
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: package
path: dist/ngxs-message-plugin