Skip to content

Bump tar from 7.5.3 to 7.5.6 (#182) #326

Bump tar from 7.5.3 to 7.5.6 (#182)

Bump tar from 7.5.3 to 7.5.6 (#182) #326

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, current]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Analyze JavaScript files
run: npm run-script lint
- name: Run test suite
run: |
npm test
npm run-script coverage
- name: Push coverage report
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}