Merge pull request #127 from oddbird/auto-dependency-upgrades #465
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: 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@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: yarn | |
- name: Build | |
run: | | |
yarn install --immutable | |
yarn build | |
- name: Upload built files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: built | |
path: .svelte-kit | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: yarn | |
- name: Download built files | |
uses: actions/download-artifact@v3 | |
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@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: yarn | |
- name: Download built files | |
uses: actions/download-artifact@v3 | |
with: | |
name: built | |
path: .svelte-kit | |
- name: Lint | |
run: | | |
yarn install --immutable | |
yarn lint:ci |