[READ-ONLY] Mirror of https://github.com/danielroe/postcss-capsize. PostCSS plugin to inject Capsize font metrics
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: test with node 16 (#87)

authored by

Daniel Roe and committed by
GitHub
(Mar 22, 2022, 9:43 AM UTC) e99bb8f9 6028b281

+8 -5
+8 -5
.github/workflows/ci.yml
··· 9 9 steps: 10 10 - uses: actions/checkout@v3 11 11 12 - - uses: actions/setup-node@v2-beta 12 + - uses: actions/setup-node@v3 13 13 with: 14 - node-version: "14" 14 + node-version: "16" 15 15 16 16 - name: Get yarn cache directory path 17 17 id: yarn-cache-dir-path 18 18 run: echo "::set-output name=dir::$(yarn config get cacheFolder)" 19 19 20 - - uses: actions/cache@v2 20 + - uses: actions/cache@v3 21 21 id: cache 22 22 with: 23 23 path: | ··· 44 44 steps: 45 45 - uses: actions/checkout@v3 46 46 47 + - uses: actions/setup-node@v3 48 + with: 49 + node-version: "16" 50 + 47 51 - name: Get yarn cache directory path 48 52 id: yarn-cache-dir-path 49 53 run: echo "::set-output name=dir::$(yarn config get cacheFolder)" 50 54 51 - - uses: actions/cache@v2 55 + - uses: actions/cache@v3 52 56 id: cache 53 57 with: 54 58 path: | ··· 64 68 ${{ runner.os }}-yarn 65 69 66 70 - name: Install dependencies 67 - if: steps.cache.outputs.cache-hit != 'true' 68 71 run: yarn 69 72 70 73 - name: Build project