Skip to content

Merge pull request #42 from selim13/dependabot/npm_and_yarn/compressi… #108

Merge pull request #42 from selim13/dependabot/npm_and_yarn/compressi…

Merge pull request #42 from selim13/dependabot/npm_and_yarn/compressi… #108

Workflow file for this run

name: Node.js CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Install brotli
run: sudo apt-get install -y brotli
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install NPM packages
run: npm ci
- name: Run tests
run: npm test