Skip to content

feat: fix CI replace pnpm by the old npm... #2

feat: fix CI replace pnpm by the old npm...

feat: fix CI replace pnpm by the old npm... #2

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install Dependencies
run: npm install
- name: Run Linter
run: npm run lint
- name: Run Tests
run: npm run test