Bump @babel/traverse from 7.22.20 to 7.23.2 #172
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: Linting, testing, building pipeline | |
# on: | |
# push: | |
# branches: [ main ] | |
# pull_request: | |
# branches: [ main ] | |
# jobs: | |
# webpack-pipeline: | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# node-version: [ 20.x ] | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Starting Node.js ${{ matrix.node-version }} | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: ${{ matrix.node-version }} | |
# - name: Install dependencies | |
# run: npm i | |
# - name: Production build | |
# run: npm run build:prod | |
# - name: Linting TypeScript | |
# if: always() | |
# run: npm run lint:ts | |
# - name: Build Storybook | |
# if: always() | |
# run: npm run storybook:build | |
# - name: Screenshort testing | |
# run: npm run test:ui | |
# - name: Unit testing JEST | |
# if: always() | |
# run: npm run test:unit | |
name: Linting, testing, building pipeline | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
build-and-ui-testing: | |
runs-on: ubuntu-latest | |
concurrency: ci-${{ github.ref }} | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
strategy: | |
matrix: | |
node-version: [ 18.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 ci --force | |
- name: build production project | |
run: npm run build:prod | |
if: always() | |
- name: build storybook | |
run: npm run storybook:build | |
if: always() | |
- name: screenshot testing | |
run: npm run test:ui:ci | |
if: always() | |
- name: unit testing | |
run: npm run test:unit | |
- name: Generate HTML report | |
run: npm run test:ui:report | |
if: always() | |
- name: move loki | |
run: mv .loki reports/ | |
if: always() | |
- name: Setup Pages | |
uses: actions/configure-pages@v2 | |
if: always() | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
if: always() | |
with: | |
path: 'reports' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
if: always() | |
uses: actions/deploy-pages@v1 | |
checks: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 18.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 ci | |
- name: linting typescript | |
run: npm run lint:ts | |
if: always() | |
- name: linting css | |
run: npm run lint:scss | |