Skip to content

chore(ci): fix base64 installation #26

chore(ci): fix base64 installation

chore(ci): fix base64 installation #26

Workflow file for this run

name: Build and lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checkout_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- node-version: 14.x
- node-version: 16.x
- node-version: 19.x
steps:
- name: Checkout code from ${{ github.repository }}
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm i
- name: Run linter
if: ${{ matrix.lint }}
run: npm run lint
- name: Run tests
run: npm test