Skip to content

Commit

Permalink
add GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nikmihalevich committed Sep 23, 2023
1 parent 8bfd905 commit f143839
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: linting, testing, building
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
pipeline:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- uses: actions/checkout@v2
- name: Starting Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install modules
run: npm ci
- name: build production project
run: npm run build:prod
if: always()
- name: linting typescript
run: npm run lint:ts
if: always()
- name: linting css
run: npm run lint:scss
- name: unit testing
if: always()
run: npm run test:unit
- name: build storybook
run: npm run storybook:build
if: always()

0 comments on commit f143839

Please sign in to comment.