Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Improved init config #9

Improved init config

Improved init config #9

Workflow file for this run

name: Node.js CI on Ubuntu
on:
push:
branches: [main]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 15.x, 16.x]
npm-version: [8.x, 9.x]
yarn-version: [2.x, 3.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test