feat: create obscured #23
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: ci | |
on: | |
push: | |
branches: [main] | |
env: | |
CI: true | |
PNPM_CACHE_FOLDER: .pnpm-store | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: setup node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: install pnpm | |
run: | | |
npm i pnpm@latest -g | |
- name: load cache | |
uses: actions/[email protected] | |
with: | |
path: | | |
./.pnpm-store | |
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }} | |
- name: setup pnpm config | |
run: | | |
pnpm config set store-dir $PNPM_CACHE_FOLDER | |
- name: install dependencies | |
run: | | |
pnpm install --ignore-scripts | |
- name: run test suite | |
run: | | |
pnpm lint | |
# security: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: checkout code repository | |
# uses: actions/checkout@v3 | |
# with: | |
# fetch-depth: 0 | |
# - name: setup node.js | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: 16.x | |
# - name: install pnpm | |
# run: | | |
# npm i pnpm@latest -g | |
# - name: load cache | |
# uses: actions/[email protected] | |
# with: | |
# path: | | |
# ./.pnpm-store | |
# key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
# restore-keys: | | |
# ${{ runner.os }} | |
# - name: setup pnpm config | |
# run: | | |
# pnpm config set store-dir $PNPM_CACHE_FOLDER | |
# - name: install dependencies | |
# run: | | |
# pnpm install --ignore-scripts | |
# - name: check vulnerabilities | |
# run: | | |
# pnpm ci:security | |
release: | |
runs-on: ubuntu-latest | |
needs: | |
- lint | |
steps: | |
- name: checkout code repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: setup node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: install pnpm | |
run: | | |
npm i pnpm@latest -g | |
- name: load cache | |
uses: actions/[email protected] | |
with: | |
path: | | |
./.pnpm-store | |
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }} | |
- name: setup pnpm config | |
run: | | |
pnpm config set store-dir $PNPM_CACHE_FOLDER | |
- name: install dependencies | |
run: | | |
pnpm install --ignore-scripts | |
- name: create and publish versions | |
uses: changesets/action@v1 | |
with: | |
version: pnpm ci:version | |
commit: "chore: update versions 🏹" | |
title: "chore: update versions 🏹" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: deploy storybook on Github pages | |
run: | | |
pnpm build:storybook | |
pnpm deploy:storybook |