Skip to content

7.0.8

7.0.8 #82

Workflow file for this run

name: lint-and-test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm install
- run: npm run lint
- run: npm run test:all:coverage
- run: npm run e2e:uws
- name: Coveralls
if: startsWith(matrix.node-version, '18.')
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}