Skip to content

Update encoding management #3

Update encoding management

Update encoding management #3

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint_and_test:
name: Run linter and tests
runs-on: ubuntu-latest
env:
CI: true
NODE_ENV: test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
- run: npm ci
- run: npm run lint
- run: npm test