chore: upgrade yarn to latest #420
Workflow file for this run
This file contains hidden or 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: Build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20, 22] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
graphql-version: [15, 16, 17.0.0-alpha.9] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# https://github.com/actions/cache/blob/main/examples.md#node---yarn | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT | |
# https://github.com/actions/cache/blob/main/examples.md#node---yarn | |
- name: Cache yarn packages | |
uses: actions/cache@v4 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-${{matrix.node-version}}-${{matrix.graphql-version}}-yarn-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{matrix.node-version}}-${{matrix.graphql-version}}-yarn- | |
- name: Use GraphQL v${{matrix.graphql-version}} | |
run: node ./scripts/match-graphql.js ${{matrix.graphql-version}} | |
- name: Install dependencies | |
run: | | |
yarn config set enableImmutableInstalls false | |
yarn install | |
- name: Format and Lint check | |
run: yarn check-tsc && yarn lint && yarn build && yarn check-exports | |
- name: Tests and Coverage | |
run: yarn test --coverage |