update ci #108
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 | |
paths: | |
- src | |
- test | |
- package.json | |
- .github/workflows/ci.yml | |
jobs: | |
test: | |
runs-on: ubuntu-24.04 | |
name: Test on Node 20 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
- name: Deno Setup | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: pnpm | |
- name: Install | |
run: pnpm install --no-frozen-lockfile | |
- name: Install Playwright | |
run: pnpm exec playwright install | |
- name: Lint | |
run: pnpm lint | |
- name: Build JS | |
run: pnpm build | |
- name: Build CSS | |
run: pnpm compile-scss | |
- name: Copy Assets | |
run: pnpm copy | |
- name: Clean coverage | |
run: pnpm clean-coverage | |
- name: Run tests | |
run: pnpm test | |
- name: Upload coverage report on to coveralls.io... | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |