Skip to content

fix: correct typo 'animationiteratio' → 'animationiteration' (#62) #10

fix: correct typo 'animationiteratio' → 'animationiteration' (#62)

fix: correct typo 'animationiteratio' → 'animationiteration' (#62) #10

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
cache:
name: CI cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: remove git auth
run: git config --unset http.https://github.com/.extraheader
- run: pnpm install --frozen-lockfile
lint:
name: lint
runs-on: ubuntu-latest
needs: cache
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: remove git auth
run: git config --unset http.https://github.com/.extraheader
- run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
build:
name: build
runs-on: ubuntu-latest
needs: cache
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: remove git auth
run: git config --unset http.https://github.com/.extraheader
- run: pnpm install --frozen-lockfile
- name: build
run: pnpm build