mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 05:35:08 +01:00
50 lines
897 B
YAML
50 lines
897 B
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
|
|
run: yarn lint
|
|
|
|
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
|