Skip to content

clean up action workflow names #1

clean up action workflow names

clean up action workflow names #1

Workflow file for this run

on:
push:
branches:
- feature
env:
NODE_VERSION: "16.x"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run Tests
run: npm test