Skip to content

Update some wording #38

Update some wording

Update some wording #38

Workflow file for this run

name: PR - Lint, Build
on:
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache dependencies
uses: actions/cache@v2
with:
path: /**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm i
# - name: Run the tests
# run: npm test
- name: Run linter
run: npm run lint
- name: Build
run: npm run build