mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 09:57:38 +00:00
1cc63c051c
Bumps [dorny/paths-filter](https://github.com/dorny/paths-filter) from v2.7.0 to v2.8.0. - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](https://github.com/dorny/paths-filter/compare/v2.7.0...7c0f15b688b020e95e00f15c61299b022f08ca95) 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
|
|
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 .
|