Skip to content

minor tweaks πŸ“πŸ’š; 1.0.0 #6

minor tweaks πŸ“πŸ’š; 1.0.0

minor tweaks πŸ“πŸ’š; 1.0.0 #6

Workflow file for this run

name: test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18', '20']
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run lint
- run: npm test