Skip to content

chore(workflows): fix workflow throwing error #530

chore(workflows): fix workflow throwing error

chore(workflows): fix workflow throwing error #530

Workflow file for this run

name: Typescript, eslint and tsup tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Tests with Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run build