Merge pull request #369 from zoontek/fix-package-name #157
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: Push | |
on: [push] | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repository code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: ⬆️ Upload output | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ github.sha }} | |
path: ./** | |
install: | |
needs: setup | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Restore output | |
uses: actions/download-artifact@v3 | |
with: | |
name: ${{ github.sha }} | |
- name: 🛠 Install dependencies | |
uses: bahmutov/npm-install@v1 | |
lint: | |
needs: [setup, install] | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Restore output | |
uses: actions/download-artifact@v3 | |
with: | |
name: ${{ github.sha }} | |
- name: 🛠 Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Run lint | |
run: yarn lint | |
test: | |
needs: [setup, install] | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Restore output | |
uses: actions/download-artifact@v3 | |
with: | |
name: ${{ github.sha }} | |
- name: 🛠 Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Run tests | |
run: yarn test --runInBand |