remove extra css #1045
Workflow file for this run
This file contains hidden or 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: Lint & Test | |
| on: | |
| push: | |
| pull_request: | |
| types: [reopened] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: yarn | |
| - name: Build | |
| run: | | |
| yarn install --immutable | |
| yarn build | |
| - name: Upload built files | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: built | |
| path: .svelte-kit | |
| include-hidden-files: true | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: yarn | |
| - name: Download built files | |
| uses: actions/download-artifact@v7 | |
| with: | |
| name: built | |
| path: .svelte-kit | |
| - name: Test | |
| run: | | |
| yarn install --immutable | |
| yarn test | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: yarn | |
| - name: Download built files | |
| uses: actions/download-artifact@v7 | |
| with: | |
| name: built | |
| path: .svelte-kit | |
| - name: Lint | |
| run: | | |
| yarn install --immutable | |
| yarn lint:ci |