chore(deps): update dependency eslint-plugin-import to v2.30.0 #1784
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: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: npm install --global pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run build | |
- run: pnpm run test | |
- name: Report coverage | |
if: ${{ github.repository_owner == 'maxmilton' }} | |
run: | | |
curl -Lo ./cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 | |
chmod +x ./cc-test-reporter | |
./cc-test-reporter format-coverage -t lcov -o coverage/codeclimate.json coverage/lcov.info | |
./cc-test-reporter upload-coverage | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: npm install --global pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run lint |