Skip to content

Commit

Permalink
css compilation stage
Browse files Browse the repository at this point in the history
  • Loading branch information
orzklv committed Nov 15, 2023
1 parent 2c55aa8 commit a599389
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,33 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
override: true
profile: minimal

- name: Install Nodejs
uses: actions/setup-node@v4
with:
node-version: '20.x'

- name: Install trunk
uses: jetli/trunk-action@v0.1.0
with:
version: 'latest'

- name: Install PNPM
run: npm install -g pnpm

- name: Compile css files
run: pnpm run css

- name: Build
run: trunk build

- name: Run tests
run: cargo test --verbose

0 comments on commit a599389

Please sign in to comment.