Skip to content

Don't remove temp files, and print their path #177

Don't remove temp files, and print their path

Don't remove temp files, and print their path #177

Workflow file for this run

name: Run tests
on: [push]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run prettier
- name: Run the tests
run: npm test