ci: Use GITHUB_OUTPUT envvar instead of set-output command #2945
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: tests.yml | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- '4.12' | |
- '4.13' | |
pull_request: | |
branches: | |
- main | |
- '4.12' | |
- '4.13' | |
jobs: | |
ci: | |
name: "${{ github.workflow }} ${{ matrix.os }} (node ${{ matrix.node-version }})" | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
os: [ubuntu, windows] | |
node-version: [14.x, 16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: use node ${{ matrix.node-version }} | |
uses: actions/setup-node@v2-beta | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: yarn cache dir | |
id: yarn-cache-dir | |
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v2 | |
with: | |
path: ${{ steps.yarn-cache-dir.outputs.dir }} | |
key: ${{ runner.os }}-node${{ matrix.node-version }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: yarn | |
run: yarn --frozen-lockfile | |
- name: yarn build | |
run: yarn build | |
- name: yarn test:github | |
run: yarn test:github | |
- name: coveralls | |
if: matrix.node-version == '16.x' | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: .lcov.info |