Skip to content

ci: Add workflow file for pull requests #1

ci: Add workflow file for pull requests

ci: Add workflow file for pull requests #1

Workflow file for this run

# This workflow will run all checks required for a PR to be merged.
name: Build and Test ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2.0.0
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: "18.16.1"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: yarn
- name: Check linting and formatting
run: |
if yarn lint && yarn format --check; then
echo "Linting and formatting checks passed."
else
echo "Linting or formatting checks failed. Please fix the issues."
exit 1
fi
- name: Build generated code
run: yarn build
- name: Check for build failures
run: |

Check failure on line 41 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Build and Test ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 41, Col: 14): Unrecognized function: 'success'. Located at position 1 within expression: success()
if ! ${{ success() }}; then
echo "Build failed. Please fix the issues."
exit 1
fi