Skip to content

Switched from yarn to npm #5

Switched from yarn to npm

Switched from yarn to npm #5

Workflow file for this run

name: Lint and tests
on: [push]
jobs:
lint-tests:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js environment
uses: actions/setup-node@v4.0.0
with:
node-version: 18.18.2
- uses: actions/checkout@v4
- run: npm install
- run: npm run lint
- run: npm run test