mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 04:07:36 +00:00
af90b1a0a3
Bumps [actions/cache](https://github.com/actions/cache) from v2 to v2.1.4. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...26968a09c0ea4f3e233fdddbafd1166051a095f6) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: Continuous Integration
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build-lint:
|
|
name: Build and lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v2.1.4
|
|
with:
|
|
node-version: 14.15.4
|
|
- name: Setup build cache
|
|
uses: actions/cache@v2.1.4
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: ${{ runner.os }}-node-
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Compile TypeScript
|
|
run: npm run compile
|
|
- name: Run linter
|
|
run: npm run lint
|
|
build-docker:
|
|
name: Build Docker image
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Run paths filter
|
|
uses: dorny/paths-filter@v2.8.0
|
|
id: filter
|
|
with:
|
|
filters: |
|
|
build:
|
|
- 'Dockerfile'
|
|
- 'package*.json'
|
|
- name: Build Docker image
|
|
if: steps.filter.outputs.build == 'true'
|
|
run: docker build .
|