You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.1 KiB
56 lines
1.1 KiB
name: Linting and Testing |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
- dev |
|
pull_request: |
|
|
|
jobs: |
|
linting: |
|
name: Run Linters |
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
- name: Checkout code |
|
uses: actions/checkout@v3 |
|
|
|
- name: Install Node.js |
|
uses: actions/setup-node@v3 |
|
with: |
|
node-version: 18 |
|
cache: 'yarn' |
|
|
|
- name: Install Yarn packages |
|
run: yarn install |
|
|
|
- name: Run ESLint Report |
|
run: yarn lint:report |
|
# continue on error, so it still reports it in the next step |
|
continue-on-error: true |
|
|
|
- uses: actions/upload-artifact@v2 |
|
with: |
|
name: eslint_report.zip |
|
path: eslint_report.json |
|
|
|
building: |
|
name: Build project |
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
- name: Checkout code |
|
uses: actions/checkout@v3 |
|
|
|
- name: Install Node.js |
|
uses: actions/setup-node@v3 |
|
with: |
|
node-version: 18 |
|
cache: 'yarn' |
|
|
|
- name: Install Yarn packages |
|
run: yarn install |
|
|
|
- name: Build Project |
|
run: yarn build
|
|
|