mirror of
https://github.com/XFox111/PasswordGeneratorExtension.git
synced 2026-04-22 08:08:01 +03:00
03d74f93d6
* Migrated to React 18 and FluentUI 9 * Added Ukranian translation * Updated GitHub templates * Updated CI/CD - Added CodeQL and Dependabot pipelines - Removed Whitesource Bolt integration - Added PR pipeline - Update release pipeline to meet ReactJS - Added Edge publish to pipeline - Updated PR checklist * Updated repo docs * Moved dependabot yml to the right place * Update README.md * Added path filters to pipelines
37 lines
643 B
YAML
37 lines
643 B
YAML
name: PR check pipeline
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'LICENSE'
|
|
- 'PRIVACY'
|
|
- '**/cd_pipeline.yaml'
|
|
- '**/dependabot.yml'
|
|
- '**/codeql-analysis.yml'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16.x'
|
|
cache: 'yarn'
|
|
|
|
- run: yarn install
|
|
- run: yarn build
|
|
|
|
- name: 'Drop artifacts'
|
|
uses: actions/upload-artifact@v3.0.0
|
|
with:
|
|
name: 'Package'
|
|
path: 'build'
|