mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 06:35:06 +01:00
57 lines
1.1 KiB
YAML
57 lines
1.1 KiB
YAML
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@v3
|
|
with:
|
|
name: eslint_report.json
|
|
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
|