Merge pull request #785 from 2641a40fd44383320adde4b027a1d0b03bd550/p… #431
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
# This action works with pull requests and pushes | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- dev | |
- photon-style | |
- proton-style | |
paths: | |
- userChrome.css | |
- userContent.css | |
- css/** | |
- src/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/node-setup | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test |