Skip to content

Remove loading screen (#172) #876

Remove loading screen (#172)

Remove loading screen (#172) #876

Workflow file for this run

name: CI
on: [push]
jobs:
build_test_lint:
name: Test and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
# Enable corepack to have yarn v3
- run: corepack enable
- uses: borales/[email protected]
with:
cmd: --version # will run `yarn install` command
- uses: borales/[email protected]
with:
cmd: install # will run `yarn install` command
- uses: borales/[email protected]
with:
cmd: build # will run `yarn build` command
- uses: borales/[email protected]
with:
cmd: test # will run `yarn test` command
- uses: borales/[email protected]
with:
cmd: lint # will run `yarn lint` command