Bump postcss and web-ext #113
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: HowLongIveBeenHere-UT | |
on: [push] | |
jobs: | |
install: | |
name: Install dependencies | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Cache node modules | |
id: cache-npm | |
uses: actions/[email protected] | |
env: | |
cache-name: cached-ios-npm-deps | |
with: | |
path: ./node_modules | |
key: ${{ hashFiles('./package.json') }} | |
- name: Install required dependencies on cache miss (npm) | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: | | |
npm install | |
verify: | |
name: Verify the sources | |
runs-on: windows-latest | |
needs: install | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Cache | |
uses: actions/[email protected] | |
with: | |
path: ./node_modules | |
key: ${{ hashFiles('./package.json') }} | |
- name: Run ESLint on the sources | |
run: npx eslint . | |
test: | |
name: Run the unit tests | |
runs-on: windows-latest | |
needs: [verify] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Pull the npm dependencies | |
uses: actions/[email protected] | |
with: | |
path: ./node_modules | |
key: ${{ hashFiles('./package.json') }} | |
- name: Run unit tests | |
run: npx jest |