Skip to content

chore(release): 9.0.1 #32

chore(release): 9.0.1

chore(release): 9.0.1 #32

name: Converted Workflow
'on':
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
node-version: [16.x,18.x,20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: ls -lha ${{ github.workspace }}
- run: npm run run-container
- run: npm ci
- run: sleep 5
- run: npm run ci-coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}