chore(deps): update dependency react-icons to v5.0.1 #205
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install sg | |
run: npm install -g @ast-grep/cli | |
- name: Install deps | |
run: npm install | |
- name: Compile | |
run: npm run compile | |
- name: Run headless test | |
uses: GabrielBB/[email protected] | |
with: | |
run: npm test |