Skip to content

chore: pin GitHub Actions to commit SHAs (#116) #323

chore: pin GitHub Actions to commit SHAs (#116)

chore: pin GitHub Actions to commit SHAs (#116) #323

Workflow file for this run

name: Check
on:
push:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "16"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run lint script
run: yarn lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "16"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run build script
run: yarn build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "16"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run test script
run: yarn test
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "16"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Start examples and run e2e tests
run: yarn e2e