forked from brndbstrd/production-project
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (40 loc) · 1.09 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: linting, testing, building
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pipeline:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- uses: actions/checkout@v2
- name: Staring Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install modules
run: npm install
- name: build production project
run: npm run build:prod
- name: linting typescript
run: npm run lint:ts
- name: linting css
run: npm run lint:scss
- name: unit testing
run: npm run test:unit
- name: Install Docker
run: |
sudo apt-get update
sudo apt-get install -y docker.io
sudo systemctl start docker
sudo systemctl enable docker
- name: Verify Docker installation
run: docker --version
- name: build storybook
run: npm run storybook:build
- name: screenshot testing
run: npm run test:ui:ci