Skip to content

Xiawpohr acitvates the actions πŸš€ #1278

Xiawpohr acitvates the actions πŸš€

Xiawpohr acitvates the actions πŸš€ #1278

Workflow file for this run

name: CI-Test and Lint
run-name: ${{ github.actor }} acitvates the actions πŸš€
on:
push:
branches: ['main']
pull_request:
types: [opened, reopened, synchronize]
branches: ['main']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
strategy:
fail-fast: false
matrix:
target: [Circuits, Contracts, Relay, Frontend]
name: ${{ matrix.target }}
uses: ./.github/workflows/build-and-test.yml
with:
target: ${{ matrix.target }}
secrets:
CR_PAT: ${{ secrets.CR_PAT_CI_CD }}
lint:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install packages
run: yarn
- name: Lint
run: yarn lint:check