feat: Update publish-nt-css.yml #3
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
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: Set SHELL environment variable | |
run: echo "SHELL=/bin/bash" >> $GITHUB_ENV | |
- name: Set up pnpm | |
run: pnpm setup | |
- name: Update PATH | |
run: echo "PATH=$HOME/.local/share/pnpm:$PATH" >> $GITHUB_ENV | |
- name: Install postcss-cli globally | |
run: pnpm add -g postcss-cli | |
- name: Install dependencies | |
run: pnpm install | |
working-directory: apps/nt-css | |
- name: Build CSS framework | |
run: pnpm run build:css | |
working-directory: apps/nt-css | |
- name: Publish to npm | |
run: pnpm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }} | |
working-directory: apps/nt-css |