Skip to content

Update test configuration in test.yml and package.json #178

Update test configuration in test.yml and package.json

Update test configuration in test.yml and package.json #178

Workflow file for this run

name: Test
on:
push:
branches:
- master
- gh-action-debug
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18']
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version}}
- run: npm install
- run: npm run lint
- run: npm test