-
Notifications
You must be signed in to change notification settings - Fork 8
49 lines (42 loc) Β· 1.28 KB
/
theme-tailwindcss.yml
File metadata and controls
49 lines (42 loc) Β· 1.28 KB
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
41
42
43
44
45
46
47
48
49
name: theme-tailwindcss
on:
push:
branches:
- develop
jobs:
theme_tailwindcss:
runs-on: ubuntu-latest
steps:
- name: Checkout π
uses: actions/checkout@master
- name: Setup node env π
uses: actions/setup-node@v3.5.1
with:
node-version: 16
check-latest: true
- name: Update npm π
run: |
npm install -g npm
npm --version
- name: Cache node_modules π¦
uses: actions/cache@v3.0.11
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install frontend dependencies π¨π»βπ»
run: cd nuxt && npm install
- name: Install TailwindCSS π¨π»βπ»
run: |
cd nuxt
npm install -D @nuxtjs/tailwindcss
sed -i "s/modules: \[\]/modules: \['@nuxtjs\/tailwindcss\']/g" nuxt.config.js
npx tailwindcss init
- name: Commit & Push changes π
uses: actions-js/push@master
with:
branch: 'theme/tailwindcss'
force: true
github_token: ${{ secrets.GITHUB_TOKEN }}
message: 'chore(theme-tailwindcss): add tailwindcss'