Skip to content

fix(Acronyms): Building name check #615

fix(Acronyms): Building name check

fix(Acronyms): Building name check #615

Workflow file for this run

name: CI
on:
push:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-${{ matrix.node-version }}
- name: Install
run: npm install
- name: Test
run: npm run test
- name: Build
run: npm run build