Skip to content

Readme: Remove Windows from supported OSes, recommend WSL #52

Readme: Remove Windows from supported OSes, recommend WSL

Readme: Remove Windows from supported OSes, recommend WSL #52

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Test with nginx ${{ matrix.nginx-version }}
strategy:
matrix:
nginx-version:
- 1.22.x
- 1.23.x
- 1.24.x
env:
NGINX_VERSION: ${{ matrix.nginx-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm install
- run: npm run build
- run: npm run test
- run: npm run lint