Merge pull request #1453 from AMIRKHANEF/SelectableAuthorization #67
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: | |
branches: [main] | |
pull_request: | |
jobs: | |
pr: | |
strategy: | |
matrix: | |
step: ['build'] | |
name: ${{ matrix.step }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Set up correct Yarn version | |
run: corepack prepare [email protected] --activate | |
- name: Install dependencies without immutable | |
run: yarn install | |
- name: Verify dependencies with immutable | |
run: yarn install --immutable | grep -v 'YN0013' | |
- name: ${{ matrix.step }} | |
run: yarn ${{ matrix.step }} |