Skip to content

Test

Test #2

Workflow file for this run

name: Test
env:
NODE_VERSION: v14.16.x
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: [self-hosted, dev]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
- name: Prepare environment
run: |
npm i -g npm@7
npm ci
npm test
npm run lint