Skip to content

[Fork] Support flex reverse column inverted scrollTop #55

[Fork] Support flex reverse column inverted scrollTop

[Fork] Support flex reverse column inverted scrollTop #55

Workflow file for this run

name: Lint, Test & Publish
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup 🔧
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: Install ♻
run: npm install
- name: Test ✅
run: npm run test
publish:
needs: test
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup 🔧
uses: actions/[email protected]
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: Install ♻
run: npm install
- name: Publish 🚀
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}