chore(*): Prepare release 0.2.0 #127
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build, test and lint | |
permissions: | |
contents: read | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Build, lint and test the code base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
cache: 'npm' | |
- name: Install deps | |
run: npm ci | |
- name: Run tests | |
run: npm run test | |
- name: Check types with Typescript | |
run: npm run build | |
- name: Check code with ESLint | |
run: npm run lint | |
- name: Check code formatting | |
run: npm run prettify-check | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
if: always() | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: crowdsecurity/nodejs-cs-bouncer |