fix(ci): enable corepack sooner #511
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
env: | |
MAIN_NODE_VERSION: "16" | |
jobs: | |
static-checks: | |
runs-on: ubuntu-latest | |
name: Run static checks | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.MAIN_NODE_VERSION }} | |
cache: 'yarn' | |
- run: yarn install | |
- run: yarn run lint | |
- run: yarn run types | |
tests: | |
needs: [static-checks] | |
runs-on: ubuntu-latest | |
name: Run tests | |
strategy: | |
matrix: | |
node: ["18", "20", "21"] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install | |
- name: Run tests | |
run: yarn run test --coverage | |
- name: Publish code coverage | |
if: "${{ env.CC_TEST_REPORTER_ID != '' }}" | |
uses: paambaati/[email protected] | |
build: | |
needs: [tests] | |
runs-on: ubuntu-latest | |
name: Build | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.MAIN_NODE_VERSION }} | |
- run: yarn install | |
- run: yarn run build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: babel-plugin-i18next-extract | |
path: lib/ |